Questionnaire-of-the-Facebo.../node_modules/is-obj
2021-03-10 20:43:28 -05:00
..
index.d.ts Updated the Survey. 2021-03-10 20:43:28 -05:00
index.js Updated the Survey. 2021-03-10 20:43:28 -05:00
license Updated the Survey. 2021-03-10 20:43:28 -05:00
package.json Updated the Survey. 2021-03-10 20:43:28 -05:00
readme.md Updated the Survey. 2021-03-10 20:43:28 -05: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