benji.monster/node_modules/is-obj
ry 69c5b90d6a upload site 2020-01-03 21:48:09 +01:00
..
index.js upload site 2020-01-03 21:48:09 +01:00
license upload site 2020-01-03 21:48:09 +01:00
package.json upload site 2020-01-03 21:48:09 +01:00
readme.md upload site 2020-01-03 21:48:09 +01:00

readme.md

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 --save is-obj

Usage

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

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

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

isObj('foo');
//=> false

License

MIT © Sindre Sorhus