Skip to content

Instantly share code, notes, and snippets.

@keithstric
Created July 16, 2020 14:50
Show Gist options
  • Save keithstric/c543c5fe298c2b7b29276e8b8fd673f2 to your computer and use it in GitHub Desktop.
Save keithstric/c543c5fe298c2b7b29276e8b8fd673f2 to your computer and use it in GitHub Desktop.
// This will NOT go through our error handler
try {
(null as any).f();
} catch (e) {
console.error(e);
}
// This will go through our error handler
try {
(null as any).f();
} catch (e) {
throw e;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment