Bump to v4.16.6.

This commit is contained in:
John-David Dalton
2016-10-31 21:05:43 -07:00
parent b58a63eff1
commit cd1921dfad
4 changed files with 8 additions and 10 deletions

View File

@@ -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);
}
}
}