UNPKG

rubico

Version:

[a]synchronous functional programming

13 lines (11 loc) 191 B
/** * @name isArray * * @synopsis * isArray(value any) -> boolean * * @description * Determine whether a value is an array. */ const isArray = Array.isArray module.exports = isArray