UNPKG

xpm

Version:

The xPack project manager command line tool

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