Files
OverlayScrollbars/local/esbuild/src/normalizePathSlashes.js
T
2022-10-14 14:39:31 +02:00

5 lines
158 B
JavaScript

const isExtendedLengthPath = /^\\\\\?\\/;
export const normalizePathSlashes = (path) =>
isExtendedLengthPath.test(path) ? path : path.replace(/\\/g, '/');