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