UNPKG

@jsenv/util

Version:

Set of functions often needed when using Node.js.

6 lines (5 loc) 224 B
export const urlTargetsSameFileSystemPath = (leftUrl, rightUrl) => { if (leftUrl.endsWith("/")) leftUrl = leftUrl.slice(0, -1) if (rightUrl.endsWith("/")) rightUrl = rightUrl.slice(0, -1) return leftUrl === rightUrl }