MCPcopy
hub / github.com/dunky11/react-saas-template / isArrayLikeObject

Function isArrayLikeObject

src/shared/functions/toArray.js:703–705  ·  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`. * @example

(value)

Source from the content-addressed store, hash-verified

701 * // => false
702 */
703function isArrayLikeObject(value) {
704 return isObjectLike(value) && isArrayLike(value);
705}
706
707/**
708 * Checks if `value` is classified as a `Function` object.

Callers 1

isArgumentsFunction · 0.85

Calls 2

isObjectLikeFunction · 0.85
isArrayLikeFunction · 0.85

Tested by

no test coverage detected