budibase/packages/common/node_modules/slash/index.js

12 lines
294 B
JavaScript
Raw Normal View History

2020-04-07 16:12:08 +02:00
'use strict';
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) {
return input;
2020-04-07 16:12:08 +02:00
}
return input.replace(/\\/g, '/');
2020-04-07 16:12:08 +02:00
};