index.js 294 B

1234567891011
  1. 'use strict';
  2. module.exports = input => {
  3. const isExtendedLengthPath = /^\\\\\?\\/.test(input);
  4. const hasNonAscii = /[^\u0000-\u0080]+/.test(input); // eslint-disable-line no-control-regex
  5. if (isExtendedLengthPath || hasNonAscii) {
  6. return input;
  7. }
  8. return input.replace(/\\/g, '/');
  9. };