MCPcopy
hub / github.com/tdewolff/minify / isArrayLikeObject

Function isArrayLikeObject

_benchmarks/sample_victory.js:17913–17915  ·  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

17911 * // => false
17912 */
17913function isArrayLikeObject(value) {
17914 return isObjectLike(value) && isArrayLike(value);
17915}
17916
17917module.exports = isArrayLikeObject;
17918

Callers 1

sample_victory.jsFile · 0.85

Calls 2

isObjectLikeFunction · 0.70
isArrayLikeFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…