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

Function isDecimalDigit

jsonpath.js:222–224  ·  view source on GitHub ↗
(ch)

Source from the content-addressed store, hash-verified

220 }
221
222 function isDecimalDigit(ch) {
223 return (ch >= 48 && ch <= 57); // 0..9
224 }
225
226 function isHexDigit(ch) {
227 return '0123456789abcdefABCDEF'.indexOf(ch) >= 0;

Callers 3

scanOctalLiteralFunction · 0.85
scanNumericLiteralFunction · 0.85
advanceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected