The Wayback Machine - https://web.archive.org/web/20220309051448/https://github.com/lodash/lodash/blob/master/isElement.js
Skip to content
Permalink
master
Switch branches/tags
Go to file
@jdalton
Latest commit 6cb3460 Feb 5, 2017 History
1 contributor

Users who have contributed to this file

import isObjectLike from './isObjectLike.js'
import isPlainObject from './isPlainObject.js'
/**
* Checks if `value` is likely a DOM element.
*
* @since 0.1.0
* @category Lang
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is a DOM element, else `false`.
* @example
*
* isElement(document.body)
* // => true
*
* isElement('<body>')
* // => false
*/
function isElement(value) {
return isObjectLike(value) && value.nodeType === 1 && !isPlainObject(value)
}
export default isElement