is-obj

Check if a value is an object


Keywords
object, is, check, test, type
License
MIT
Install
npm install is-obj@3.0.0

Documentation

is-obj

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

import isObject from 'is-obj';

isObject({foo: 'bar'});
//=> true

isObject([1, 2, 3]);
//=> true

isObject('foo');
//=> false

Related

  • is - Type check values

Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.