MCPcopy Create free account
hub / github.com/RubyLouvre/anu / isArrayLikeObject

Function isArrayLikeObject

test/babel.js:54612–54614  ·  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, * else `false`. *

(value)

Source from the content-addressed store, hash-verified

54610 * // => false
54611 */
54612 function isArrayLikeObject(value) {
54613 return isObjectLike(value) && isArrayLike(value);
54614 }
54615
54616 module.exports = isArrayLikeObject;
54617

Callers 1

baseMergeDeepFunction · 0.85

Calls 2

isObjectLikeFunction · 0.70
isArrayLikeFunction · 0.70

Tested by

no test coverage detected