Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
scanHexEscape
Function · 0.85
scanUnicodeCodePointEscape
Function · 0.85
scanHexLiteral
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected