Skip to content

Instantly share code, notes, and snippets.

@rohfosho
Last active August 29, 2015 14:24
Show Gist options
  • Save rohfosho/5b26bbe8e8cdf5a844a9 to your computer and use it in GitHub Desktop.
Save rohfosho/5b26bbe8e8cdf5a844a9 to your computer and use it in GitHub Desktop.
function* main () {
try {
yield lol();
} catch (error) {
console.error(error.type);
}
}
function lol () {
//logic
return promise;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment