1.0.2 • Published 4 years ago

@bemoje/is-plain-object v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

@bemoje/is-plain-object

True if value is a plain object.

Version

Travis CI

Dependencies

Stats

Donate

Installation

npm install @bemoje/is-plain-object
npm install --save @bemoje/is-plain-object
npm install --save-dev @bemoje/is-plain-object

Usage

import isPlainObject from '@bemoje/is-plain-object'

isPlainObject({})
//=> true

isPlainObject({ a: 1 })
//=> true

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

isPlainObject(/regex/)
//=> false

Tests

Uses Jest to test module functionality. Run tests to get coverage details.

npm run test

API

Table of Contents

isPlainObject

True if value is a plain object.

Parameters
  • value any The value to evaluate

Returns boolean boolean