Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssgonchar/886c3f98205847bbe99e to your computer and use it in GitHub Desktop.
Save ssgonchar/886c3f98205847bbe99e to your computer and use it in GitHub Desktop.
// one: passes up the error from two()
function one(cb){
two(function(err, data){
if(err) return cb('one ' + err);
return cb(null, data);
});
}
// two: passes up the error from three()
function two(cb){
three(function(err, data){
if(err) return cb('two ' + err);
return cb(null, data);
});
}
// three: always returns an error
function three(cb){
cb('three: something bad happened');
}
// kick off one(), log the inevitable error with a simple function trace
one(function(err, data){
if(err) {
console.log(err);
return;
}
});
// output:
// one two three: something bad happened
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment