* 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)
| 17911 | * // => false |
| 17912 | */ |
| 17913 | function isArrayLikeObject(value) { |
| 17914 | return isObjectLike(value) && isArrayLike(value); |
| 17915 | } |
| 17916 | |
| 17917 | module.exports = isArrayLikeObject; |
| 17918 |
no test coverage detected
searching dependent graphs…