MCPcopy Create free account
hub / github.com/HtmlUnit/htmlunit / isDigit

Function isDigit

src/test/resources/libraries/html2canvas/html2canvas.js:900–900  ·  view source on GitHub ↗
(codePoint)

Source from the content-addressed store, hash-verified

898 var U = 0x0055;
899 var Z = 0x005a;
900 var isDigit = function (codePoint) { return codePoint >= ZERO && codePoint <= 0x0039; };
901 var isSurrogateCodePoint = function (codePoint) { return codePoint >= 0xd800 && codePoint <= 0xdfff; };
902 var isHex = function (codePoint) {
903 return isDigit(codePoint) || (codePoint >= A && codePoint <= F) || (codePoint >= a && codePoint <= f);

Callers 5

isHexFunction · 0.85
isNameCodePointFunction · 0.85
isNumberStartFunction · 0.85
stringToNumberFunction · 0.85
html2canvas.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…