Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
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