MCPcopy Create free account
hub / github.com/dchester/jsonpath / isHexDigit

Function isHexDigit

jsonpath.js:226–228  ·  view source on GitHub ↗
(ch)

Source from the content-addressed store, hash-verified

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

Callers 2

scanHexEscapeFunction · 0.85
scanHexLiteralFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected