(node: Node, conditionalTags: string[])
| 12 | } |
| 13 | |
| 14 | function isConditionalTag(node: Node, conditionalTags: string[]) { |
| 15 | return ( |
| 16 | node.type === 'tag' && !!node.tag && conditionalTags.includes(node.tag) |
| 17 | ); |
| 18 | } |
| 19 | |
| 20 | function isComment(node: Node) { |
| 21 | return ( |