We're a place where coders share, stay up-to-date and grow their careers.
Way too complicated lol. I just do this:
—- async function test () { await a await b Return c }
Test().catch(handleError)
If C errors out, I still catch it with handleError.
Way too complicated lol. I just do this:
—-
async function test () {
await a
await b
Return c
}
Test().catch(handleError)
If C errors out, I still catch it with handleError.