setup-node/node_modules/jest-message-util/node_modules/slash/index.js
eric sciple ae5dcb46c8 .
2020-01-24 12:30:26 -05:00

12 lines
294 B
JavaScript

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