UNPKG

@jsenv/util

Version:

Set of functions often needed when using Node.js.

10 lines (8 loc) 200 B
export const urlToScheme = (urlString) => { const colonIndex = urlString.indexOf(":") if (colonIndex === -1) { return "" } const scheme = urlString.slice(0, colonIndex) return scheme }