* This method is like `_.isArrayLike` except that it also checks if `value` * is an object. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an array-like object, * else `false`. *
(value)
| 54610 | * // => false |
| 54611 | */ |
| 54612 | function isArrayLikeObject(value) { |
| 54613 | return isObjectLike(value) && isArrayLike(value); |
| 54614 | } |
| 54615 | |
| 54616 | module.exports = isArrayLikeObject; |
| 54617 |
no test coverage detected