MCPcopy Create free account
hub / github.com/bigskysoftware/_hyperscript / #isNumeric

Method #isNumeric

www/js/_hyperscript.esm.js:220–222  ·  view source on GitHub ↗
(c)

Source from the content-addressed store, hash-verified

218 return c >= "a" && c <= "z" || c >= "A" && c <= "Z";
219 }
220 #isNumeric(c) {
221 return c >= "0" && c <= "9";
222 }
223 #isWhitespace(c) {
224 return c === " " || c === " " || c === "\r" || c === "\n";
225 }

Callers 7

#isValidCSSCharMethod · 0.95
#consumeIdentifierMethod · 0.95
#consumeNumberMethod · 0.95
#tokenizeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected