You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
is-object 


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