is-plain-object
Install
$ npm install --save is-plain-objectUsage
var isPlainObject = require('is-plain-object');isPlainObject(Object.create({}));
//=> true
isPlainObject(Object.create(Object.prototype));
//=> true
isPlainObject({foo: 'bar'});
//=> true
isPlainObject({});
//=> trueAbout
Related projects
Contributing
Contributors
Building docs
Running tests
Author
License
Last updated