UNPKG

@jsenv/util

Version:

Set of functions often needed when using Node.js.

7 lines (6 loc) 129 B
export const urlToOrigin = (url) => { if (url.startsWith("file://")) { return `file://` } return new URL(url).origin }