Bump to v4.16.6.

This commit is contained in:
John-David Dalton
2016-10-31 21:11:03 -07:00
parent a3710bba34
commit 39e6c50f72
7 changed files with 48 additions and 51 deletions

View File

@@ -25,9 +25,8 @@ function baseXor(arrays, iteratee, comparator) {
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);
}
}
}