Rebuild lodash and docs.

This commit is contained in:
John-David Dalton
2016-10-31 20:35:27 -07:00
parent 62b66305f2
commit ccc3081be0
7 changed files with 361 additions and 363 deletions

7
dist/lodash.js vendored
View File

@@ -12,7 +12,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;
@@ -4413,9 +4413,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);
}
}
}