(tag: string, tags: Array<string>, suffix: string)
| 35 | }; |
| 36 | |
| 37 | const scopeTag = (tag: string, tags: Array<string>, suffix: string) => { |
| 38 | const litStatic = getFeature<typeof LitStatic>("LitStatic"); |
| 39 | if (litStatic) { |
| 40 | return litStatic.unsafeStatic((tags || []).includes(tag) ? `${tag}-${suffix}` : tag); |
| 41 | } |
| 42 | }; |
| 43 | |
| 44 | export { |
| 45 | effectiveHtml as html, |
nothing calls this directly
no test coverage detected
searching dependent graphs…