No need to redeclare funcName in createFlow.

This commit is contained in:
jdalton
2015-03-20 11:49:18 -07:00
parent eab18df403
commit 33916fa975

View File

@@ -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 {