Skip to content

Instantly share code, notes, and snippets.

@shlomisas
Last active May 10, 2018 15:31
Show Gist options
  • Save shlomisas/faefb24e73b9b77e7e229d9b21349e8b to your computer and use it in GitHub Desktop.
Save shlomisas/faefb24e73b9b77e7e229d9b21349e8b to your computer and use it in GitHub Desktop.
unchained-promise
(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