MCPcopy Index your code
hub / github.com/deployd/deployd / isArrayLikeObject

Function isArrayLikeObject

test-app/public/sinon.js:21987–21989  ·  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)

Source from the content-addressed store, hash-verified

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.

Callers 4

baseMergeDeepFunction · 0.85
castArrayLikeObjectFunction · 0.85
sinon.jsFile · 0.85
unzipFunction · 0.85

Calls 2

isObjectLikeFunction · 0.85
isArrayLikeFunction · 0.85

Tested by

no test coverage detected