caoge c760052ff9 机车状态修改 | 8 months ago | |
---|---|---|
.. | ||
index.d.ts | 8 months ago | |
index.js | 8 months ago | |
license | 8 months ago | |
package.json | 8 months ago | |
readme.md | 8 months ago |
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 is-obj
const isObject = require('is-obj');
isObject({foo: 'bar'});
//=> true
isObject([1, 2, 3]);
//=> true
isObject('foo');
//=> false
MIT © Sindre Sorhus