Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
is-jquery-obj
/
Filename :
README.md
back
Copy
# jQuery Object Identification Provides a function that checks if the given object is a jQuery object. ## Usage ```js const isJQueryObj = require('is-jquery-obj'); if(isJQueryObj($('#element'))) console.log('$ is a jQuery object.'); if(!isJQueryObj({ foo: 'bar' })) console.log('A regular JavaScript object is not a jQuery object.'); ```