MCPcopy 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

scanBinaryLiteralFunction · 0.85
scanOctalLiteralFunction · 0.85
scanNumericLiteralFunction · 0.85
advanceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected