NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/is-obj
2023-09-14 14:47:11 +08:00
..
index.d.ts 111 2023-09-14 14:47:11 +08:00
index.js 111 2023-09-14 14:47:11 +08:00
license 111 2023-09-14 14:47:11 +08:00
package.json 111 2023-09-14 14:47:11 +08:00
readme.md 111 2023-09-14 14:47:11 +08: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