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

Method #isValidCSSChar

tools/common/_hyperscript.iife.js:224–226  ·  view source on GitHub ↗
(c)

Source from the content-addressed store, hash-verified

222 return c === "\r" || c === "\n";
223 }
224 #isValidCSSChar(c) {
225 return this.#isAlpha(c) || this.#isNumeric(c) || c === "-" || c === "_" || c === ":";
226 }
227 #isIdentifierChar(c) {
228 return c === "_" || c === "$";
229 }

Callers 3

#consumeIdReferenceMethod · 0.95

Calls 2

#isAlphaMethod · 0.95
#isNumericMethod · 0.95

Tested by

no test coverage detected