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

Method #isValidCSSChar

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

Source from the content-addressed store, hash-verified

227 return c === "\r" || c === "\n";
228 }
229 #isValidCSSChar(c) {
230 return this.#isAlpha(c) || this.#isNumeric(c) || c === "-" || c === "_" || c === ":";
231 }
232 #isIdentifierChar(c) {
233 return c === "_" || c === "$";
234 }

Callers 3

#consumeIdReferenceMethod · 0.95

Calls 2

#isAlphaMethod · 0.95
#isNumericMethod · 0.95

Tested by

no test coverage detected