docker-lemp-node/www/nodejs/node_modules/is-obj
2022-03-27 18:02:38 +02:00
..
index.d.ts upload 2022-03-27 18:02:38 +02:00
index.js upload 2022-03-27 18:02:38 +02:00
license upload 2022-03-27 18:02:38 +02:00
package.json upload 2022-03-27 18:02:38 +02:00
readme.md upload 2022-03-27 18:02:38 +02:00

is-obj Build Status

Check if a value is an object

Keep in mind that array, function, regexp, etc, are objects in JavaScript.
See is-plain-obj if you want to check for plain objects.

Install

$ npm install is-obj

Usage

const isObject = require('is-obj');

isObject({foo: 'bar'});
//=> true

isObject([1, 2, 3]);
//=> true

isObject('foo');
//=> false
  • is - Type check values

License

MIT © Sindre Sorhus