(tag: string)
| 281 | } |
| 282 | |
| 283 | function isCustomComponentTag(tag: string): boolean { |
| 284 | // React/Vue components are usually PascalCase; custom elements contain a hyphen. |
| 285 | if (!tag) return false |
| 286 | const first = tag[0] |
| 287 | return first === first.toUpperCase() || tag.includes('-') |
| 288 | } |
| 289 | |
| 290 | const VOID_HTML_TAGS = new Set([ |
| 291 | 'area', |
no outgoing calls
no test coverage detected