MCPcopy Index your code
hub / github.com/reactjs/react-rails / isDecimalDigit

Function isDecimalDigit

lib/assets/javascripts/JSXTransformer.js:2649–2651  ·  view source on GitHub ↗
(ch)

Source from the content-addressed store, hash-verified

2647 };
2648
2649 function isDecimalDigit(ch) {
2650 return (ch >= 48 && ch <= 57); // 0..9
2651 }
2652
2653 function isHexDigit(ch) {
2654 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