UNPKG

balm-ui

Version:

A modular and customizable UI library based on Material Design and Vue 3

12 lines (10 loc) 281 B
function isElement(obj) { return typeof HTMLElement === 'object' ? obj instanceof HTMLElement // DOM2 : obj && typeof obj === 'object' && obj !== null && obj.nodeType === 1 && typeof obj.nodeName === 'string'; } export default isElement;