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

Function isCodePoint

test/fixtures/snapshot/typescript.js:10433–10435  ·  view source on GitHub ↗
(code)

Source from the content-addressed store, hash-verified

10431 return isDigit(ch) || ch >= 65 /* CharacterCodes.A */ && ch <= 70 /* CharacterCodes.F */ || ch >= 97 /* CharacterCodes.a */ && ch <= 102 /* CharacterCodes.f */;
10432 }
10433 function isCodePoint(code) {
10434 return code <= 0x10FFFF;
10435 }
10436 /* @internal */
10437 function isOctalDigit(ch) {
10438 return ch >= 48 /* CharacterCodes._0 */ && ch <= 55 /* CharacterCodes._7 */;

Callers 1

scanEscapeSequenceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…