Last active
May 10, 2018 15:31
-
-
Save shlomisas/faefb24e73b9b77e7e229d9b21349e8b to your computer and use it in GitHub Desktop.
unchained-promise
This file contains 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
(async() => { | |
try { | |
new Promise((resolve, reject) => { | |
setTimeout(() => { | |
reject(new Error('something went wrong..')); | |
}, 0); | |
}); | |
} catch (e) { | |
console.error(e); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment