Skip to content

Instantly share code, notes, and snippets.

@scott-laursen
Forked from nicovalencia/onerror.js
Created May 2, 2014 10:25
Show Gist options
  • Save scott-laursen/64456ad31df02f73d0ac to your computer and use it in GitHub Desktop.
Save scott-laursen/64456ad31df02f73d0ac to your computer and use it in GitHub Desktop.
var q = require('q');
if (debug) {
q.onerror = function(err) {
console.log(err); // auto-links source map refs in stack trace
};
}
somePromiseThatThrowsAnError
.then(function() { /* do stuff */ })
.done();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment