MCPcopy
hub / github.com/vercel/hyper / isArrayLikeObject

Function isArrayLikeObject

bin/yarn-standalone.js:19082–19084  ·  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

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.

Callers 5

baseMergeDeepFunction · 0.85
castArrayLikeObjectFunction · 0.85
yarn-standalone.jsFile · 0.85
unzipFunction · 0.85
isArgumentsFunction · 0.85

Calls 2

isObjectLikeFunction · 0.85
isArrayLikeFunction · 0.85

Tested by

no test coverage detected