Skip to content

Instantly share code, notes, and snippets.

@NiallJoeMaher
Created May 14, 2019 04:48
Show Gist options
  • Save NiallJoeMaher/84b06df60c80cf21725995cbc2db0065 to your computer and use it in GitHub Desktop.
Save NiallJoeMaher/84b06df60c80cf21725995cbc2db0065 to your computer and use it in GitHub Desktop.
// Before
try {
...
} catch(error) {
...
}
// After
try {
...
} catch {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment