UNPKG

extra-dom

Version:
6 lines (4 loc) 166 B
import { isParentNode } from './is-parent-node.js' export function isntParentNode<T>(val: any): val is Exclude<T, Node & ParentNode> { return !isParentNode(val) }