Remove unneeded var assignment in baseXor.

This commit is contained in:
John-David Dalton
2016-10-31 10:12:52 -07:00
parent 0fcf43b02b
commit 65daae2043

View File

@@ -4413,9 +4413,8 @@
othIndex = -1;
while (++othIndex < length) {
var othArray = arrays[othIndex];
if (othIndex != index) {
result[index] = baseDifference(result[index] || array, othArray, iteratee, comparator);
result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator);
}
}
}