Projekt

Obecné

Profil

Stáhnout (244 Bajtů) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
'use strict';
2
module.exports = function (str) {
3
	var isExtendedLengthPath = /^\\\\\?\\/.test(str);
4
	var hasNonAscii = /[^\x00-\x80]+/.test(str);
5
6
	if (isExtendedLengthPath || hasNonAscii) {
7
		return str;
8
	}
9
10
	return str.replace(/\\/g, '/');
11
};