UNPKG

extra-dom

Version:
7 lines (5 loc) 156 B
import { isNode } from './is-node.js' export function isParentNode(val: any): val is Node & ParentNode { return isNode(val) && 'children' in val }