(node: Node)
| 82 | } |
| 83 | |
| 84 | export const isComment = (node: Node): node is Comment => |
| 85 | node.nodeType === DOMNodeTypes.COMMENT |
| 86 | |
| 87 | // Note: hydration is DOM-specific |
| 88 | // But we have to place it in core due to tight coupling with core - splitting |
no outgoing calls
no test coverage detected