biofriction-wp-theme/node_modules/slash/index.js

12 lines
244 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02:00
'use strict';
module.exports = function (str) {
var isExtendedLengthPath = /^\\\\\?\\/.test(str);
var hasNonAscii = /[^\x00-\x80]+/.test(str);
if (isExtendedLengthPath || hasNonAscii) {
return str;
}
return str.replace(/\\/g, '/');
};