2020-04-07 16:12:08 +02:00
|
|
|
'use strict';
|
2020-04-20 17:17:11 +02:00
|
|
|
module.exports = input => {
|
|
|
|
const isExtendedLengthPath = /^\\\\\?\\/.test(input);
|
|
|
|
const hasNonAscii = /[^\u0000-\u0080]+/.test(input); // eslint-disable-line no-control-regex
|
2020-04-07 16:12:08 +02:00
|
|
|
|
|
|
|
if (isExtendedLengthPath || hasNonAscii) {
|
2020-04-20 17:17:11 +02:00
|
|
|
return input;
|
2020-04-07 16:12:08 +02:00
|
|
|
}
|
|
|
|
|
2020-04-20 17:17:11 +02:00
|
|
|
return input.replace(/\\/g, '/');
|
2020-04-07 16:12:08 +02:00
|
|
|
};
|