arvin.torres e3ca5d94a7 Campanas de Paz para la Mujer | 5 年之前 | |
---|---|---|
.. | ||
index.js | 5 年之前 | |
license | 5 年之前 | |
package.json | 5 年之前 | |
readme.md | 5 年之前 |
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.
$ npm install --save is-obj
const isObj = require('is-obj');
isObj({foo: 'bar'});
//=> true
isObj([1, 2, 3]);
//=> true
isObj('foo');
//=> false
MIT © Sindre Sorhus