(id: string)
| 306 | |
| 307 | const renderedScopeIds: string[] = [] |
| 308 | const appendScopeId = (id: string) => { |
| 309 | if ( |
| 310 | id && |
| 311 | (!props || !hasOwn(props, id)) && |
| 312 | !renderedScopeIds.includes(id) |
| 313 | ) { |
| 314 | openTag += ` ${id}` |
| 315 | renderedScopeIds.push(id) |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | if (scopeId) { |
| 320 | appendScopeId(scopeId) |
no test coverage detected