uppy/packages/@uppy/utils/src/isDOMElement.js
2022-05-23 09:40:50 +02:00

8 lines
194 B
JavaScript

/**
* Check if an object is a DOM element. Duck-typing based on `nodeType`.
*
* @param {*} obj
*/
export default function isDOMElement (obj) {
return obj?.nodeType === Node.ELEMENT_NODE
}