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