UNPKG

rubico

Version:

[a]synchronous functional programming

12 lines (11 loc) 246 B
export = isObject; /** * @name isObject * * @synopsis * isObject(value any) -> boolean * * @description * Determine whether a value is an object. Note that Arrays are also objects in JS. */ declare function isObject(value: any): boolean;