UNPKG

extra-dom

Version:
6 lines (4 loc) 126 B
import { isNode } from './is-node.js' export function isntNode<T>(val: T): val is Exclude<T, Node> { return !isNode(val) }