Sha256: b1f5d25db69382df863c946f01a08f29734cb49b9ade6f6404ea2f069e09e3e2
Contents?: true
Size: 778 Bytes
Versions: 10
Compression:
Stored size: 778 Bytes
Contents
# isobject [![NPM version](https://badge.fury.io/js/isobject.png)](http://badge.fury.io/js/isobject) > Returns true if the value is an object and not an array or null. ## Install Install with [npm](npmjs.org): ```bash npm i isobject --save ``` ## Usage ```js var isObject = require('isobject'); console.log(isObject(null)); //=> 'false' console.log(isObject([])); //=> 'false' console.log(isObject({})); //=> 'true' ``` ## Author **Jon Schlinkert** + [github/jonschlinkert](https://github.com/jonschlinkert) + [twitter/jonschlinkert](http://twitter.com/jonschlinkert) ## License Copyright (c) 2014 Jon Schlinkert, contributors. Released under the MIT license *** _This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on September 22, 2014._
Version data entries
10 entries across 10 versions & 1 rubygems