Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/BloombergGraphics/whatiscode
/ isDecimalDigit
Function
isDecimalDigit
scripts/libs/esprima.js:225–227 ·
view source on GitHub ↗
(ch)
Source
from the content-addressed store, hash-verified
223
}
224
225
function
isDecimalDigit(ch) {
226
return
(ch >= 0x30 && ch <= 0x39);
// 0..9
227
}
228
229
function
isHexDigit(ch) {
230
return
'0123456789abcdefABCDEF'
.indexOf(ch) >= 0;
Callers
4
scanBinaryLiteral
Function · 0.85
scanOctalLiteral
Function · 0.85
scanNumericLiteral
Function · 0.85
advance
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected