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

Function charCode

deps/v8/test/intl/assert.js:223–223  ·  view source on GitHub ↗
(char)

Source from the content-addressed store, hash-verified

221 // The below is a mini-parser that reads backwards from the end of the string.
222
223 function charCode(char) { return char.charCodeAt(0); }
224 function isAlphaNumeric(code) {
225 return (charCode("0") <= code && code <= charCode("9")) ||
226 (charCode("A") <= code && code <= charCode("Z")) ||

Callers 2

isAlphaNumericFunction · 0.85
splitLanguageTagFunction · 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…