Hacker News new | ask | show | jobs
by evanreichard 935 days ago
Use the second pattern with `.allSettled` but map it with an async function.

      const result = await Promise.allSettled(elements.map(async x => someAsyncFunction3(computeArg3(x))));
1 comments