mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-08 08:42:27 +03:00
5 lines
158 B
JavaScript
5 lines
158 B
JavaScript
const isExtendedLengthPath = /^\\\\\?\\/;
|
|
|
|
export const normalizePathSlashes = (path) =>
|
|
isExtendedLengthPath.test(path) ? path : path.replace(/\\/g, '/');
|