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