Skip to content

Instantly share code, notes, and snippets.

@ainvyu
Created August 2, 2013 13:25
Show Gist options
  • Save ainvyu/6139859 to your computer and use it in GitHub Desktop.
Save ainvyu/6139859 to your computer and use it in GitHub Desktop.
async.waterfall([
function(callback){
callback(null, 'one', 'two');
},
function(arg1, arg2, callback){
callback(null, 'three');
},
function(arg1, callback){
// arg1 now equals 'three'
callback(null, 'done');
}
], function (err, result) {
// result now equals 'done'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment