Lines Matching refs:isArr
1887 isArr = isArray(array),
1889 arrLength = isArr ? array.length : 0,
1900 if (!isArr || (!isRight && arrLength == length && takeCount == length)) {
2426 var isArr = isArray(value),
2427 isArg = !isArr && isArguments(value),
2428 isBuff = !isArr && !isArg && isBuffer(value),
2429 isType = !isArr && !isArg && !isBuff && isTypedArray(value),
2430 skipIndexes = isArr || isArg || isBuff || isType,
2677 var isArr = isArray(value);
2678 if (isArr) {
2726 var props = isArr ? undefined : keysFunc(value);
3691 var isArr = isArray(srcValue),
3692 isBuff = !isArr && isBuffer(srcValue),
3693 isTyped = !isArr && !isBuff && isTypedArray(srcValue);
3696 if (isArr || isBuff || isTyped) {
13857 var isArr = isArray(object),
13858 isArrLike = isArr || isBuffer(object) || isTypedArray(object);
13864 accumulator = isArr ? new Ctor : [];