Skip to content

Instantly share code, notes, and snippets.

@bluepnume
Created November 26, 2013 07:34
Show Gist options
  • Save bluepnume/7654638 to your computer and use it in GitHub Desktop.
Save bluepnume/7654638 to your computer and use it in GitHub Desktop.
q.makePromise.prototype.attachNodeStyleCallback = function(callback) {
if (!callback)
return this;
return this.then(function(result) {
callback(null, result);
return result;
}, function(err) {
callback(err);
throw err;
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment