-
-
Save scott-laursen/64456ad31df02f73d0ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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