Files
streamwall/src/util.js
2020-06-20 23:07:51 -07:00

7 lines
214 B
JavaScript

export function ensureValidURL(urlStr) {
const url = new URL(urlStr)
if (url.protocol !== 'http:' && url.protocol !== 'https:') {
throw new Error(`rejecting attempt to load non-http URL '${urlStr}'`)
}
}