{%= name %} {%= badge("fury") %}

Install

Run tests

npm test

Usage

var isPlainObject = require('{%= name %}');

isPlainObject(1);
//=> false

isPlainObject(['foo', 'bar']);
//=> false

isPlainObject([]);
//=> false

isPlainObject(new Foo);
//=> false

isPlainObject(null);
//=> false

isPlainObject(Object.create(null));
//=> false

isPlainObject(Object.create({}));
//=> true

isPlainObject({foo: 'bar'});
//=> true

isPlainObject({});
//=> true

Author

License

Last updated