FLUJOS/VISUALIZACION/node_modules/underscore/cjs/isElement.js
2025-11-07 00:06:12 +01:00

6 lines
132 B
JavaScript
Executable file

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