Created
January 23, 2018 00:36
-
-
Save lubien/fcfd39b1c136f1c81f1c8898bbfe7d43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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