Skip to content

Instantly share code, notes, and snippets.

@lperrin
Last active September 18, 2015 17:35
Show Gist options
  • Save lperrin/4b47094fd75a220e0f4e to your computer and use it in GitHub Desktop.
Save lperrin/4b47094fd75a220e0f4e to your computer and use it in GitHub Desktop.
function a() {
setTimeout(function () {
throw new Error('hi');
}, 0);
}
function b() {
a();
}
b();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment