goreleaser-action/node_modules/is-object
CrazyMax 730e0e9d77
Update node_modules
2019-11-14 23:36:55 +01:00
..
test Initial commit 2019-09-20 22:23:46 +02:00
.jscs.json Initial commit 2019-09-20 22:23:46 +02:00
.npmignore Initial commit 2019-09-20 22:23:46 +02:00
.testem.json Initial commit 2019-09-20 22:23:46 +02:00
.travis.yml Initial commit 2019-09-20 22:23:46 +02:00
LICENSE Initial commit 2019-09-20 22:23:46 +02:00
README.md Initial commit 2019-09-20 22:23:46 +02:00
index.js Initial commit 2019-09-20 22:23:46 +02:00
package.json Update node_modules 2019-11-14 23:36:55 +01:00

README.md

is-object Version Badge

build status dependency status dev dependency status License Downloads

npm badge

browser support

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