Skip to content

Instantly share code, notes, and snippets.

@azizshamim
Created December 30, 2014 21:51
Show Gist options
  • Save azizshamim/449da054074dd6636aad to your computer and use it in GitHub Desktop.
Save azizshamim/449da054074dd6636aad to your computer and use it in GitHub Desktop.
javascript done with errors
exports.report_error = function(err, res, done) {
if (err) {
return done(err);
} else {
done();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment