Lines Matching refs:isArr
1845 isArr = isArray(array),
1847 arrLength = isArr ? array.length : 0,
1858 if (!isArr || (!isRight && arrLength == length && takeCount == length)) {
2384 var isArr = isArray(value),
2385 isArg = !isArr && isArguments(value),
2386 isBuff = !isArr && !isArg && isBuffer(value),
2387 isType = !isArr && !isArg && !isBuff && isTypedArray(value),
2388 skipIndexes = isArr || isArg || isBuff || isType,
2635 var isArr = isArray(value);
2636 if (isArr) {
2684 var props = isArr ? undefined : keysFunc(value);
3649 var isArr = isArray(srcValue),
3650 isBuff = !isArr && isBuffer(srcValue),
3651 isTyped = !isArr && !isBuff && isTypedArray(srcValue);
3654 if (isArr || isBuff || isTyped) {
13789 var isArr = isArray(object),
13790 isArrLike = isArr || isBuffer(object) || isTypedArray(object);
13796 accumulator = isArr ? new Ctor : [];