Format nit.

This commit is contained in:
John-David Dalton
2019-07-09 09:34:06 -07:00
parent 52ab48c054
commit 02b3295a63

View File

@@ -17044,8 +17044,9 @@
var lodashFunc = lodash[methodName];
if (lodashFunc) {
var key = lodashFunc.name + '';
if (!hasOwnProperty.call(realNames, key)) return;
if (!hasOwnProperty.call(realNames, key)) {
return;
}
var names = realNames[key] || (realNames[key] = []);
names.push({ 'name': methodName, 'func': lodashFunc });
}