* 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,
(value)
| 11458 | * // => false |
| 11459 | */ |
| 11460 | function isArrayLikeObject(value) { |
| 11461 | return isObjectLike(value) && isArrayLike(value); |
| 11462 | } |
| 11463 | |
| 11464 | /** |
| 11465 | * Checks if `value` is classified as a boolean primitive or object. |
no test coverage detected