function myAsyncFunction() { | |
return new Promise((resolve, reject) => { | |
setTimeout(() => { | |
reject(new Error('oops')) | |
}, 1000); | |
}) | |
} | |
myAsyncFunction() | |
.then(() => { | |
// happy path | |
}) | |
.catch((err) => { | |
// handle error | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment