MCPcopy Index your code
hub / github.com/BloombergGraphics/whatiscode / isHexDigit

Function isHexDigit

scripts/libs/esprima.js:229–231  ·  view source on GitHub ↗
(ch)

Source from the content-addressed store, hash-verified

227 }
228
229 function isHexDigit(ch) {
230 return '0123456789abcdefABCDEF'.indexOf(ch) >= 0;
231 }
232
233 function isOctalDigit(ch) {
234 return '01234567'.indexOf(ch) >= 0;

Callers 3

scanHexEscapeFunction · 0.85
scanHexLiteralFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected