UNPKG

extra-dom

Version:
6 lines (4 loc) 143 B
import { isTextNode } from './is-text-node.js' export function isntTextNode<T>(val: T): val is Exclude<T, Text> { return !isTextNode(val) }