* For name-bearing nodes (function / at-rule): the `name` with CSS escapes * resolved, for case-insensitive keyword matching (`\75 rl` → `url`). Computed * on read via `unescapeIdentifier`'s no-escape fast path. Callers without a * `name` must not read this. * @returns {string} the unescaped
()
| 1265 | * @returns {string} the unescaped name |
| 1266 | */ |
| 1267 | get unescapedName() { |
| 1268 | return unescapeIdentifier( |
| 1269 | /** @type {{ name: string }} */ (/** @type {unknown} */ (this)).name |
| 1270 | ); |
| 1271 | } |
| 1272 | } |
| 1273 | |
| 1274 | /** |
no outgoing calls
no test coverage detected