8000 Fix minified build. · frontman-git/lodash@2406eac · GitHub
[go: up one dir, main page]

Skip to content

Commit 2406eac

Browse files
committed
Fix minified build.
1 parent 17a34bc commit 2406eac

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lodash.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17045,10 +17045,9 @@
1704517045
if (lodashFunc) {
1704617046
var key = lodashFunc.name + '';
1704717047
if (!hasOwnProperty.call(realNames, key)) {
17048-
return;
17048+
realNames[key] = [];
1704917049
}
17050-
var names = realNames[key] || (realNames[key] = []);
17051-
names.push({ 'name': methodName, 'func': lodashFunc });
17050+
realNames[key].push({ 'name': methodName, 'func': lodashFunc });
1705217051
}
1705317052
});
1705417053

0 commit comments

Comments
 (0)
0