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

Method #isValidCSSChar

www/js/_hyperscript-max.js:230–232  ·  view source on GitHub ↗
(c)

Source from the content-addressed store, hash-verified

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

Callers 3

#consumeIdReferenceMethod · 0.95

Calls 2

#isAlphaMethod · 0.95
#isNumericMethod · 0.95

Tested by

no test coverage detected