Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bigskysoftware/_hyperscript
/ #isValidCSSChar
Method
#isValidCSSChar
src/core/tokenizer.js:281–283 ·
view source on GitHub ↗
(c)
Source
from the content-addressed store, hash-verified
279
}
280
281
#isValidCSSChar(c) {
282
return
this.#isAlpha(c) || this.#isNumeric(c) || c ===
"-"
|| c ===
"_"
|| c ===
":"
;
283
}
284
285
#isIdentifierChar(c) {
286
return
c ===
"_"
|| c ===
"$"
;
Callers
3
#consumeClassReference
Method · 0.95
#consumeIdReference
Method · 0.95
#consumeShortAttributeReference
Method · 0.95
Calls
2
#isAlpha
Method · 0.95
#isNumeric
Method · 0.95
Tested by
no test coverage detected