* Checks if `value` is array-like. A value is considered array-like if it's * not a function and has a `value.length` that's an integer greater than or * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @par
(value)
| 2415 | * // => false |
| 2416 | */ |
| 2417 | function isArrayLike(value) { |
| 2418 | return value != null && isLength(value.length) && !isFunction(value); |
| 2419 | } |
| 2420 | |
| 2421 | module.exports = isArrayLike; |
| 2422 |
no test coverage detected