isElement.js 159 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 define(function () { // Is a given value a DOM element? function isElement(obj) { return !!(obj && obj.nodeType === 1); } return isElement; });