Is there a way to short circuit async/await flow?
The standard way to do this now is through AbortSignals async function update({ signal } = {}) { // pass these to methods to cancel them internally in turn // this is implemented throughout Node.js and most of the web platform try { var urls = await getCdnUrls({ signal }); var metadata = await fetchMetaData(urls); … Read more