safe-url.js
export class SafeURL extends URL { | |
constructor(url, base) { | |
super( | |
url.replace(/^(http(s?):\/\/)?/, 'http$2://'), | |
base | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment