Skip to content

Instantly share code, notes, and snippets.

@lubien
Created January 23, 2018 00:36
Show Gist options
  • Select an option

  • Save lubien/fcfd39b1c136f1c81f1c8898bbfe7d43 to your computer and use it in GitHub Desktop.

Select an option

Save lubien/fcfd39b1c136f1c81f1c8898bbfe7d43 to your computer and use it in GitHub Desktop.
Promise.reject('some error')
.catch(err => { throw 'earth is not flat' }) // runs
.catch(err => console.log(err)) // logs 'earth is not flat'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment