Hallo Forum,
eslint zeigt mir noch zwei Fehler an in folgender Funktion:
static isExternalUrl(url) {
function domain(url) {
const a = document.createElement('a');
a.href = url;
return a.hostname;
}
return domain(location.href) !== domain(url);
}
error 'url' is already declared in the upper scope error Unexpected use of 'location'
Kann mir jemand verraten, wie ich das sinnvoll behebe?
100Dank für Tipps und
beste gruesse, heinetz