(charCode)
| 7636 | ts.hasTrailingDirectorySeparator = hasTrailingDirectorySeparator; |
| 7637 | //// Path Parsing |
| 7638 | function isVolumeCharacter(charCode) { |
| 7639 | return (charCode >= 97 /* CharacterCodes.a */ && charCode <= 122 /* CharacterCodes.z */) || |
| 7640 | (charCode >= 65 /* CharacterCodes.A */ && charCode <= 90 /* CharacterCodes.Z */); |
| 7641 | } |
| 7642 | function getFileUrlVolumeSeparatorEnd(url, start) { |
| 7643 | var ch0 = url.charCodeAt(start); |
| 7644 | if (ch0 === 58 /* CharacterCodes.colon */) |
no outgoing calls
no test coverage detected