* 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)
| 21985 | * // => false |
| 21986 | */ |
| 21987 | function isArrayLikeObject(value) { |
| 21988 | return isObjectLike(value) && isArrayLike(value); |
| 21989 | } |
| 21990 | |
| 21991 | /** |
| 21992 | * Checks if `value` is classified as a boolean primitive or object. |
no test coverage detected