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

10 lines
159 B
JavaScript
Executable file

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