We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17a34bc commit 2406eacCopy full SHA for 2406eac
1 file changed
lodash.js
@@ -17045,10 +17045,9 @@
17045
if (lodashFunc) {
17046
var key = lodashFunc.name + '';
17047
if (!hasOwnProperty.call(realNames, key)) {
17048
- return;
+ realNames[key] = [];
17049
}
17050
- var names = realNames[key] || (realNames[key] = []);
17051
- names.push({ 'name': methodName, 'func': lodashFunc });
+ realNames[key].push({ 'name': methodName, 'func': lodashFunc });
17052
17053
});
17054
0 commit comments