(node)
| 2172 | }; |
| 2173 | |
| 2174 | function isVoidElement(node) { |
| 2175 | return (node.children.length === 0) && voidTagNames[node.tag.tagName]; |
| 2176 | } |
| 2177 | |
| 2178 | exports.isVoidElement = isVoidElement; |
| 2179 |
nothing calls this directly
no outgoing calls
no test coverage detected