Files
JiboSDK/node_modules/slash/index.js
2026-03-22 03:21:45 +02:00

16 lines
311 B
JavaScript

"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;