UNPKG

@jsenv/href

Version:

url helpers not relying on URL constructor

7 lines (5 loc) 185 B
export const pathnameToDirname = (pathname) => { const slashLastIndex = pathname.lastIndexOf("/") if (slashLastIndex === -1) return "" return pathname.slice(0, slashLastIndex) }