pipeworks icon indicating copy to clipboard operation
pipeworks copied to clipboard

Create pipes. Fit 'em together. Start the flow!

Results 3 pipeworks issues
Sort by recently updated
recently updated
newest added

When an error is thrown in any of the handlers - the flow is broken: I don't get to the last fitting, and I don't get to the fault-pipe handler....

Example: ``` javascript var pipeworks = require('pipeworks'); var a = pipeworks() .fit(function(next) { console.log('a'); next(); }); var b = pipeworks() .fit(function(next) { console.log('b'); next(); }); var c = function(next) {...