Skip to content
On this page

isObject

Identifies if a value is an object.

Type Definitions

ts
/**
 * @param val - The value.
 * @returns If the value is an object.
 */
export declare function isObject(val: unknown): val is Obj
1
2
3
4
5