install-nix-action/node_modules/slash/index.js
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +01:00

11 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, '/');
};