MCPcopy 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

#consumeIdReferenceMethod · 0.95

Calls 2

#isAlphaMethod · 0.95
#isNumericMethod · 0.95

Tested by

no test coverage detected