Category
Type
Type checking and validation utilities
isArray
Checks if value is classified as an Array object.
isArray(value: unknown): value is any[]
isObject
Checks if value is a plain object (not an array, function, or other special object).
isObject(value: unknown): value is Record<string, any>
isEmpty
Checks if value is an empty object, collection, map, or set. Objects are considered empty if they have no own enumerable string keyed properties.
isEmpty(value: unknown): boolean