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

@@ -13,7 +13,7 @@
var undefined;
/** Used as the semantic version number. */
var VERSION = '4.16.5';
var VERSION = '4.16.6';
/** Used as the size to enable large array optimizations. */
var LARGE_ARRAY_SIZE = 200;
@@ -4414,9 +4414,8 @@
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);
}
}
}