| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | '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 | }; | ||||