Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bigskysoftware/_hyperscript
/ #isAlpha
Method
#isAlpha
src/core/tokenizer.js:265–267 ·
view source on GitHub ↗
(c)
Source
from the content-addressed store, hash-verified
263
// ----- Character classification -----
264
265
#isAlpha(c) {
266
return
(c >=
"a"
&& c <=
"z"
) || (c >=
"A"
&& c <=
"Z"
);
267
}
268
269
#isNumeric(c) {
270
return
c >=
"0"
&& c <=
"9"
;
Callers
8
#isValidCSSChar
Method · 0.95
#possiblePrecedingSymbol
Method · 0.95
#consumeShortAttributeReference
Method · 0.95
#consumeStyleReference
Method · 0.95
#consumeTemplateLogic
Method · 0.95
#consumeTemplateIdentifier
Method · 0.95
#consumeIdentifier
Method · 0.95
#tokenize
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected