Skip to content

isObject

Check whether the input parameter is an object, including general objects ({ key: 'value' }), functions (function() {}), and instances of primitive type wrappers (new Number(1)), all of which would return true.

Added in v0.0.1

Usage

ts
import { isObject } from 'parsnip-kit'

isObject(null) // false
isObject({}) // true
isObject(() => {}) // true
isObject(new Number()) // true
isObject(/test/) // true
isObject(new Date()) // true

API

Arguments

ArgTypeOptionalDefaultDescription
arganyfalseundefinedParameters for check

Returns

Type
boolean