Function: isObject()
isObject(
value
:unknown
):value is UnknownRecord
Defined in: shared/utils/typeGuards.ts:22
Determines if a value is an object (excluding null
and arrays).
Parametersโ
valueโ
unknown
The value to check.
Returnsโ
value is UnknownRecord
True if value
is an object and not null or an array; otherwise,
false.