UNPKG

extra-dom

Version:
8 lines 239 B
import { isObject } from '@blackglory/types'; export function isNode(val) { return ('Node' in globalThis && val instanceof Node) || (isObject(val) && 'nodeType' in val); } //# sourceMappingURL=is-node.js.map