MCPcopy Index your code
hub / github.com/nodejs/node / isVolumeCharacter

Function isVolumeCharacter

test/fixtures/snapshot/typescript.js:7638–7641  ·  view source on GitHub ↗
(charCode)

Source from the content-addressed store, hash-verified

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 */)

Callers 1

getEncodedRootLengthFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected