* 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`. * @example
(value)
| 701 | * // => false |
| 702 | */ |
| 703 | function isArrayLikeObject(value) { |
| 704 | return isObjectLike(value) && isArrayLike(value); |
| 705 | } |
| 706 | |
| 707 | /** |
| 708 | * Checks if `value` is classified as a `Function` object. |
no test coverage detected