UNPKG

slash

Version:

Convert Windows backslash paths to slash paths

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