UNPKG

229 BJavaScriptView Raw
1/**
2 * Check if an object is a DOM element. Duck-typing based on `nodeType`.
3 *
4 * @param {*} obj
5 */
6module.exports = function isDOMElement (obj) {
7 return obj && typeof obj === 'object' && obj.nodeType === Node.ELEMENT_NODE
8}