index.js 285 B

12345678910
  1. export default function slash(path) {
  2. const isExtendedLengthPath = /^\\\\\?\\/.test(path);
  3. const hasNonAscii = /[^\u0000-\u0080]+/.test(path); // eslint-disable-line no-control-regex
  4. if (isExtendedLengthPath || hasNonAscii) {
  5. return path;
  6. }
  7. return path.replace(/\\/g, '/');
  8. }