mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 10:07:48 +00:00
Bump to v4.16.6.
This commit is contained in:
@@ -23,9 +23,8 @@ define(['./_baseDifference', './_baseFlatten', './_baseUniq'], function(baseDiff
|
||||
othIndex = -1;
|
||||
|
||||
while (++othIndex < length) {
|
||||
var othArray = arrays[othIndex];
|
||||
if (othArray !== array) {
|
||||
result[index] = baseDifference(result[index] || array, othArray, iteratee, comparator);
|
||||
if (othIndex != index) {
|
||||
result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user