Comparing version 0.0.3 to 0.0.4
@@ -96,2 +96,13 @@ /* | ||
// Register a slot in the next function which includes first param | ||
Group.prototype.slotNoError = function slotNoError(argLength) { | ||
this.debug && console.log("slotting (no error)", this.left); | ||
var group = this; | ||
var slot = group.slot(argLength); | ||
return function () { | ||
group.debug && console.log("slot DONE (no error)", group.left); | ||
slot.apply(group, [null].concat(slice.call(arguments))); | ||
} | ||
}; | ||
// Block on this callback, but dont slot data | ||
@@ -98,0 +109,0 @@ Group.prototype.wait = function wait() { |
{ | ||
"name": "ff", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "Asynchronous flow control library for node (and browsers)", | ||
@@ -5,0 +5,0 @@ "engine": [ "node >=0.2.0" ], |
6425
190