mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 19:07:49 +00:00
Remove unneeded var assignment in baseXor.
This commit is contained in:
@@ -4413,9 +4413,8 @@
|
|||||||
othIndex = -1;
|
othIndex = -1;
|
||||||
|
|
||||||
while (++othIndex < length) {
|
while (++othIndex < length) {
|
||||||
var othArray = arrays[othIndex];
|
|
||||||
if (othIndex != index) {
|
if (othIndex != index) {
|
||||||
result[index] = baseDifference(result[index] || array, othArray, iteratee, comparator);
|
result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user