MCPcopy
hub / github.com/lodash/lodash / isArrayLikeObject

Function isArrayLikeObject

lodash.js:11460–11462  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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.

Callers 4

baseMergeDeepFunction · 0.85
castArrayLikeObjectFunction · 0.85
lodash.jsFile · 0.85
unzipFunction · 0.85

Calls 2

isObjectLikeFunction · 0.85
isArrayLikeFunction · 0.85

Tested by

no test coverage detected