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

Method #isAlpha

tools/common/_hyperscript.iife.js:212–214  ·  view source on GitHub ↗
(c)

Source from the content-addressed store, hash-verified

210 #templateMode;
211 // ----- Character classification -----
212 #isAlpha(c) {
213 return c >= "a" && c <= "z" || c >= "A" && c <= "Z";
214 }
215 #isNumeric(c) {
216 return c >= "0" && c <= "9";
217 }

Callers 8

#isValidCSSCharMethod · 0.95
#consumeTemplateLogicMethod · 0.95
#consumeIdentifierMethod · 0.95
#tokenizeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected