Frontend/25_03_11/frontend_vizsgafeladat/backend/node_modules/is-obj
2025-03-11 12:57:30 +01:00
..
index.d.ts added orai 2025-03-11 12:57:30 +01:00
index.js added orai 2025-03-11 12:57:30 +01:00
license added orai 2025-03-11 12:57:30 +01:00
package.json added orai 2025-03-11 12:57:30 +01:00
readme.md added orai 2025-03-11 12:57:30 +01: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