* 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)
| 19080 | * // => false |
| 19081 | */ |
| 19082 | function isArrayLikeObject(value) { |
| 19083 | return isObjectLike(value) && isArrayLike(value); |
| 19084 | } |
| 19085 | |
| 19086 | /** |
| 19087 | * Checks if `value` is classified as a boolean primitive or object. |
no test coverage detected