CampfireAuth/node_modules/underscore/cjs/isElement.js
2025-03-19 21:59:49 +05:00

7 lines
132 B
JavaScript

// Is a given value a DOM element?
function isElement(obj) {
return !!(obj && obj.nodeType === 1);
}
module.exports = isElement;