mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 10:17:48 +00:00
No need to redeclare funcName in createFlow.
This commit is contained in:
@@ -3395,10 +3395,9 @@
|
|||||||
index = wrapper ? -1 : length;
|
index = wrapper ? -1 : length;
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
func = funcs[index];
|
func = funcs[index];
|
||||||
|
funcName = getFuncName(func);
|
||||||
|
|
||||||
var funcName = getFuncName(func),
|
var data = funcName == 'wrapper' ? getData(func) : null;
|
||||||
data = funcName == 'wrapper' ? getData(func) : null;
|
|
||||||
|
|
||||||
if (data && isLaziable(data[0])) {
|
if (data && isLaziable(data[0])) {
|
||||||
wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]);
|
wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user