⚝
One Hat Cyber Team
⚝
Your IP:
3.142.187.179
Server IP:
162.254.39.145
Server:
Linux premium289.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
node_modules
/
npm
/
node_modules
/
is-obj
/
View File Name :
readme.md
# is-obj [](https://travis-ci.org/sindresorhus/is-obj) > Check if a value is an object Keep in mind that array, function, regexp, etc, are objects in JavaScript.<br> See [`is-plain-obj`](https://github.com/sindresorhus/is-plain-obj) if you want to check for plain objects. ## Install ``` $ npm install --save is-obj ``` ## Usage ```js const isObj = require('is-obj'); isObj({foo: 'bar'}); //=> true isObj([1, 2, 3]); //=> true isObj('foo'); //=> false ``` ## License MIT © [Sindre Sorhus](https://sindresorhus.com)