* 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 * @param {*} v
(value)
| 17867 | * // => false |
| 17868 | */ |
| 17869 | function isArrayLike(value) { |
| 17870 | return value != null && isLength(value.length) && !isFunction(value); |
| 17871 | } |
| 17872 | |
| 17873 | module.exports = isArrayLike; |
| 17874 |
no test coverage detected
searching dependent graphs…