mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
export default function slash(path) {
|
|
const isExtendedLengthPath = path.startsWith('\\\\?\\');
|
|
|
|
if (isExtendedLengthPath) {
|
|
return path;
|
|
}
|
|
|
|
return path.replace(/\\/g, '/');
|
|
}
|