Package Exports
- is-obj
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-obj) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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 --save is-obj
Usage
var isObj = require('is-obj');
isObj({foo: 'bar'});
//=> true
isObj([1, 2, 3]);
//=> true
isObj('foo');
//=> true
License
MIT © Sindre Sorhus