@stdlib/assert-is-plain-object

Test if a value is a plain object.

Usage no npm install needed!

<script type="module">
  import stdlibAssertIsPlainObject from 'https://cdn.skypack.dev/@stdlib/assert-is-plain-object';
</script>

README

isPlainObject

NPM version Build Status Coverage Status dependencies

Test if a value is a plain object.

Installation

npm install @stdlib/assert-is-plain-object

Usage

var isPlainObject = require( '@stdlib/assert-is-plain-object' );

isPlainObject( value )

Tests if a value is a plain object.

var bool = isPlainObject( {} );
// returns true

bool = isPlainObject( null );
// returns false

Examples

var isPlainObject = require( '@stdlib/assert-is-plain-object' );

var bool = isPlainObject( {} );
// returns true

bool = isPlainObject( Object.create( null ) );
// returns true

bool = isPlainObject( [] );
// returns false

bool = isPlainObject( null );
// returns false

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2021. The Stdlib Authors.