UNPKG

rubico

Version:

[a]synchronous functional programming

12 lines (11 loc) 204 B
export = isArray; /** * @name isArray * * @synopsis * isArray(value any) -> boolean * * @description * Determine whether a value is an array. */ declare const isArray: (arg: any) => arg is any[];