Comparing version 0.0.14 to 0.0.15
@@ -238,6 +238,8 @@ /* | ||
args.forEach(function (fn) { | ||
if (fn._ffMethod) { // backwards-compat | ||
this[fn._ffMethod](fn); | ||
} else { | ||
this.next(fn); | ||
if (fn) { | ||
if (fn._ffMethod) { // backwards-compat | ||
this[fn._ffMethod](fn); | ||
} else { | ||
this.next(fn); | ||
} | ||
} | ||
@@ -244,0 +246,0 @@ }, this); |
{ | ||
"name": "ff", | ||
"version": "0.0.14", | ||
"version": "0.0.15", | ||
"description": "Concise, Powerful Asynchronous Flow Control in JavaScript", | ||
@@ -5,0 +5,0 @@ "engine": [ "node >=0.2.0" ], |
31302
674