mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-28 04:48:56 +08:00
9 lines
189 B
JavaScript
9 lines
189 B
JavaScript
export default function (path) {
|
|
const isExtendedLengthPath = /^\\\\\?\\/.test(path);
|
|
if (isExtendedLengthPath) {
|
|
return path;
|
|
}
|
|
|
|
return path.replace(/\\/g, '/');
|
|
}
|