(code: number)
| 88 | } |
| 89 | |
| 90 | function isWindowsDeviceRoot(code: number) { |
| 91 | return ( |
| 92 | (code >= CHAR_UPPERCASE_A && code <= CHAR_UPPERCASE_Z) || (code >= CHAR_LOWERCASE_A && code <= CHAR_LOWERCASE_Z) |
| 93 | ); |
| 94 | } |
| 95 | |
| 96 | // Resolves . and .. elements in a path with directory names |
| 97 | function normalizeString( |
no outgoing calls
no test coverage detected