UNPKG

isobject

Version:

Returns true if the value is an object and not an array or null.

4 lines (2 loc) 98 B
declare function isObject(val: any): val is { [key: string]: unknown }; export default isObject;