(tag: string)
| 34 | * @param { string } tag |
| 35 | */ |
| 36 | const shouldIgnoreCustomElement = (tag: string): boolean => { |
| 37 | return tagPrefixes.some(pref => tag.startsWith(pref)); |
| 38 | }; |
| 39 | |
| 40 | export { |
| 41 | ignoreCustomElements, |
no outgoing calls
no test coverage detected
searching dependent graphs…