(code)
| 84 | } |
| 85 | |
| 86 | function isWindowsDeviceRoot(code) { |
| 87 | return (code >= CHAR_UPPERCASE_A && code <= CHAR_UPPERCASE_Z) || |
| 88 | (code >= CHAR_LOWERCASE_A && code <= CHAR_LOWERCASE_Z); |
| 89 | } |
| 90 | |
| 91 | // Resolves . and .. elements in a path with directory names |
| 92 | function normalizeString(path, allowAboveRoot, separator, isPathSeparator) { |
no outgoing calls
no test coverage detected
searching dependent graphs…