Skip to main content

isObject

@hyperledger/identus-sdk v7.0.0


@hyperledger/identus-sdk / overview / Utils / isObject

Function: isObject()

isObject<T>(value: T): value is Exclude<T & Record<string, any>, any[] | Nil | ((args: any) => any)>

Defined in: src/utils/guards.ts:46

isObject Typeguard - check a value is an object in the conceptual sense not the JS sense excluding JS overlap with: null Arrays Functions

Type Parameters

Type Parameter
T

Parameters

ParameterType
valueT

Returns

value is Exclude<T & Record<string, any>, any[] | Nil | ((args: any) => any)>