mirror of
https://github.com/transloadit/uppy.git
synced 2026-08-01 14:31:15 +00:00
8 lines
194 B
JavaScript
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
|
|
}
|