Innovenergy_trunk/frontend/node_modules/is-jquery-obj/index.js

6 lines
162 B
JavaScript
Raw Permalink Normal View History

// NOTE: Can't use 'obj instanceof $' check because it depends on instance of the jQuery.
module.exports = function (obj) {
return !!(obj && obj.jquery);
};