is-obj

Check if a value is an object

MIT 4 个版本
安装
npm install is-obj
yarn add is-obj
pnpm add is-obj
bun add is-obj
README

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
  • 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.
版本列表
3.0.0 2021-04-16
2.0.0 2019-04-19
1.0.1 2016-03-22
1.0.0 2015-07-11