Socket
Socket
Sign inDemoInstall

is-object

Package Overview
Dependencies
0
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    is-object

Checks whether a value is an object


Version published
Weekly downloads
4M
increased by0.84%
Maintainers
2
Install size
18.7 kB
Created
Weekly downloads
 

Changelog

Source

v1.0.2 - 2020-12-02

Merged

Commits

  • [Tests] migrate tests to Github Actions 1503b2b
  • [Dev Deps] add eslint, drop jscs 0b33130
  • [meta] add auto-changelog 4c1af71
  • Use my standard jscs.json. 8e02200
  • [Tests] use shared travis-ci configs ffaa4b7
  • Update tape, covert, jscs 23ae901
  • [readme] fix repo URLs, remove testling f48732a
  • [meta] avoid publishing github workflows b3a84ee
  • [Tests] run nyc on all tests a03b699
  • [Dev Deps] update eslint, @ljharb/eslint-config, aud, auto-changelog, tape db89fc0
  • Update tape, jscs bcb3ac9
  • Expanded tests to check for undefined, boolean values and functions. a12751e
  • Test up to io.js v2.0 74d46d7
  • [actions] add automatic rebasing / merge commit blocking b5505c3
  • [actions] add "Allow Edits" workflow c79aee4
  • Naming deps/devDeps URLs in README 1095633
  • [Dev Deps] update eslint, @ljharb/eslint-config, aud, auto-changelog 5db6e17
  • [Dev Deps] update eslint, @ljharb/eslint-config, tape; add safe-publish-latest ceaf8ab
  • Test up to io.js v2.2 cf9f70e
  • Naming contributor URLs in README 41b759b
  • Test up to io.js v3.0 29cd85b
  • Only apps should have lockfiles 5510e47
  • All grade A-supported node/iojs versions now ship with an npm that understands ^. 849b718
  • Run travis-ci tests on iojs and 0.12; allow 0.8 failures; speed up builds. 655c5f7
  • Naming npm package URL in README af52357
  • Naming testling-ci URLs in README 70ab476
  • Naming travis-ci URLs in README 08175df
  • [Dev Deps] update auto-changelog, tape 0f0dde7
  • [Dev Deps] update covert, tape 6148d0e
  • Update tape, jscs dff288a
  • Update tape, jscs ff04f70
  • Update jscs 75e8791
  • Update jscs, tape cc7e221
  • Update tape, jscs be32959
  • Use consistent quotes. 0dedc4b
  • Naming npm badge PNG in README 0376b83
  • Naming npm version badge SVG in README fe00aab
  • [readme] remove travis badge 028ff10
  • [Tests] add missing lint script f431139
  • [Dev Deps] update auto-changelog; add aud ad0b964
  • [meta] add funding field ab362a6
  • [actions] update rebase action to use checkout v2 592539d
  • [actions] switch Automatic Rebase workflow to pull_request_target event f26329d
  • [Tests] only audit prod deps 58efaae
  • Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG. 120491a
  • Update tape 99ccffe
  • Lock covert to v1.0.0. 9d03921
  • Updating jscs a72781e
  • Updating tape 31aabd0
  • Fixing indentation. 4c3e061
  • Updating jscs 368053e

Readme

Source

is-object Version Badge

dependency status dev dependency status License Downloads

npm badge

Checks whether a value is an object

Because typeof null is a troll.

Example

var isObject = require('is-object');
var assert = require('assert');

assert.equal(isObject(null), false);
assert.equal(isObject({}), true);

Installation

npm install is-object

Contributors

MIT Licensed

FAQs

Last updated on 02 Dec 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc