setup-maven-cached/node_modules/underscore/amd/isElement.js

11 lines
159 B
JavaScript
Raw Normal View History

2022-06-28 16:39:30 +08:00
define(function () {
// Is a given value a DOM element?
function isElement(obj) {
return !!(obj && obj.nodeType === 1);
}
return isElement;
});