(node: Node | null)
| 33 | * Check whether the input is an `Element`. |
| 34 | */ |
| 35 | export function isElement(node: Node | null): node is Element { |
| 36 | return !!node && node.nodeType === Node.ELEMENT_NODE; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Check whether the input is a function. |
no outgoing calls
no test coverage detected
searching dependent graphs…