Skip to content

Commit

Permalink
Fix minified build.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton committed Jul 9, 2019
1 parent 17a34bc commit 2406eac
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lodash.js
Original file line number Diff line number Diff line change
Expand Up @@ -17045,10 +17045,9 @@
if (lodashFunc) {
var key = lodashFunc.name + '';
if (!hasOwnProperty.call(realNames, key)) {
return;
realNames[key] = [];
}
var names = realNames[key] || (realNames[key] = []);
names.push({ 'name': methodName, 'func': lodashFunc });
realNames[key].push({ 'name': methodName, 'func': lodashFunc });
}
});

Expand Down

0 comments on commit 2406eac

Please sign in to comment.