8000 Rebuild lodash and docs. · lodash/lodash@ccc3081 · GitHub
[go: up one dir, main page]

Skip to content

Commit ccc3081

Browse files
committed
Rebuild lodash and docs.
1 parent 62b6630 commit ccc3081

File tree

7 files changed

+361
-363
lines changed

7 files changed

+361
-363
lines changed

dist/lodash.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
var undefined;
1414

1515
/** Used as the semantic version number. */
16-
var VERSION = '4.16.5';
16+
var VERSION = '4.16.6';
1717

1818
/** Error message constants. */
1919
var FUNC_ERROR_TEXT = 'Expected a function';

dist/lodash.core.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lodash.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
var undefined;
1313

1414
/** Used as the semantic version number. */
15-
var VERSION = '4.16.5';
15+
var VERSION = '4.16.6';
1616

1717
/** Used as the size to enable large array optimizations. */
1818
var LARGE_ARRAY_SIZE = 200;
@@ -4413,9 +4413,8 @@
44134413
othIndex = -1;
44144414

44154415
while (++othIndex < length) {
4416-
var othArray = arrays[othIndex];
4417-
if (othArray !== array) {
4418-
result[index] = baseDifference(result[index] || array, othArray, iteratee, comparator);
4416+
if (othIndex != index) {
4417+
result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator);
44194418
}
44204419
}
44214420
}

0 commit comments

Comments
 (0)
0