Skip to content

Instantly share code, notes, and snippets.

@ThomasKruegl
Last active March 28, 2018 12:06
Show Gist options
  • Save ThomasKruegl/ab41866fec613ffbe6c7f51f352fb4f1 to your computer and use it in GitHub Desktop.
Save ThomasKruegl/ab41866fec613ffbe6c7f51f352fb4f1 to your computer and use it in GitHub Desktop.
function throwing(): never {
throw new Error();
}
function throwingAgain(condition: boolean): never {
if (condition) {
throw new Error();
} else {
// solution: add return for this
throwing();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment