Pacote

    Module @pacote/is-plain-object

    @pacote/is-plain-object

    version minified minified + gzip

    Checks whether the provided value is a plain JavaScript object.

    yarn add @pacote/is-plain-object
    
    import { isPlainObject } from '@pacote/is-plain-object'

    // These return true:
    isPlainObject({})
    isPlainObject({ an: 'object' })

    // All of these return false:
    isPlainObject(undefined)
    isPlainObject(null)
    isPlainObject(false)
    isPlainObject(true)
    isPlainObject(NaN)
    isPlainObject(Infinity)
    isPlainObject(0)
    isPlainObject('string')
    isPlainObject([])
    isPlainObject(new ArrayBuffer(0))
    isPlainObject(new Date())
    isPlainObject(new Map())
    isPlainObject(new Promise())
    isPlainObject(new Set())
    isPlainObject(new WeakMap())
    isPlainObject(new WeakSet())

    isPlainObject() takes a single value and checks whether it is a plain object. May be used as a type guard.

    MIT © Luís Rodrigues.

    Functions

    isPlainObject
    MMNEPVFCICPMFPCPTTAAATR