UNPKG

element3

Version:

A Component Library for Vue3

10 lines (8 loc) 172 B
import { hasOwn } from './util' export function isVNode(node) { return ( node !== null && typeof node === 'object' && hasOwn(node, 'componentOptions') ) }