(url, base = location.href)
| 52 | const conflictError = (reason) => new Error(`(${CONFLICTING_CODE}): ${reason}`); |
| 53 | |
| 54 | const relative_url = (url, base = location.href) => new URL(url, base).href; |
| 55 | |
| 56 | const syntaxError = (type, url, { message }) => { |
| 57 | let str = `(${BAD_CONFIG}): Invalid ${type}`; |
no outgoing calls
no test coverage detected