Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Created June 30, 2015 04:47
Show Gist options
  • Save ajcrites/07009118dac1e5b9b9e8 to your computer and use it in GitHub Desktop.
Save ajcrites/07009118dac1e5b9b9e8 to your computer and use it in GitHub Desktop.
import Promise as "bluebird";
function takesACb() {
process.nextTick(() => { throw new Error });
}
Promise.promisify(takesACb)()
.then(function () {
console.log("woo");
}).catch(function (err) {
console.log("this is not logged");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment