Files
antrean-anjungan/examples/nuxt3-websocket-client/node_modules/slash/index.js
2025-09-18 19:01:22 +07:00

10 lines
181 B
JavaScript

export default function slash(path) {
const isExtendedLengthPath = path.startsWith('\\\\?\\');
if (isExtendedLengthPath) {
return path;
}
return path.replace(/\\/g, '/');
}