Skip to content

Instantly share code, notes, and snippets.

@natan88
Last active June 9, 2017 18:20
Show Gist options
  • Save natan88/b1ecc27b00416bb5d8257947d622b330 to your computer and use it in GitHub Desktop.
Save natan88/b1ecc27b00416bb5d8257947d622b330 to your computer and use it in GitHub Desktop.
Teste
async.parallel(
{
canal: function(callback){
}
email: function(callback){
callback(erro, retorno);
},
function(err, result) {
}
);
async.series(
{
funcaoA: function(callback){
callback(erro);
}
},
function(err){
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment