Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
scanOctalLiteral
Function · 0.85
scanNumericLiteral
Function · 0.85
advance
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected