Files

16 lines
311 B
JavaScript
Raw Permalink Normal View History

2026-03-22 03:21:45 +02:00
"use strict";
function slash(path) {
var isExtendedLengthPath = typeof path === "string" && path.indexOf("\\\\?\\") === 0;
if (isExtendedLengthPath) {
return path;
}
return String(path).replace(/\\\\/g, "/");
}
module.exports = slash;
module.exports.default = slash;
module.exports.__esModule = true;