isObject()
@hyperledger/identus-sdk v8.0.0
@hyperledger/identus-sdk / overview / Domain / isObject
Variable: isObject()
constisObject: <T>(value:T) => value is Exclude<T & Record<string, any>, Nil | any[] | ((args: any) => any)>
Defined in: packages/shared/domain/build/index.d.ts:155
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
| Parameter | Type |
|---|---|
value | T |
Returns
value is Exclude<T & Record<string, any>, Nil | any[] | ((args: any) => any)>