4
0
mirror of https://gitee.com/dcloud/uni-preset-vue synced 2025-05-08 12:27:01 +08:00
2018-11-18 15:15:00 +08:00

12 lines
244 B
JavaScript

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