(c)
| 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 | } |
no test coverage detected