Created
June 29, 2010 22:51
-
-
Save felixge/457949 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
function a() { | |
setTimeout(b, 10); | |
} | |
function b() { | |
throw new Error('i forgot'); | |
} | |
a(); |
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
demo.js:6 | |
throw new Error('i forgot'); | |
^ | |
Error: i forgot | |
at Timer.b [as callback] (demo.js:6:9) | |
at node.js:228:9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ # @![Uploading 975491721734992.png…]()