promise-settled-aggregate
TypeScript icon, indicating that this package has built-in type declarations

0.5.1 • Public • Published

promise-settled-aggregate

Await an array of promises to be settled, then reject with an AggregateError upon failure, or resolve with an array of values upon success.

It works like Promise.allSettled except it will reject with an AggregateError if some of the promises are rejected, otherwise it resolves with the fulfilled values like Promise.all.

try {
  const [a, b, c, d] = await promiseSettledAggregate([
    Promise.reject(new Error("Boom")),
    Promise.resolve(2),
    Promise.resolve(true),
    Promise.reject(new Error("Pow")),
  ]);
} catch (err) {
  err.errors.forEach(console.error);
}

You may copy the source code (see dist for JS) directly into your project as this library is published under the Unlicense license.

You can also install it as a npm dependency:

npm install promise-settled-aggregate

Package Sidebar

Install

npm i promise-settled-aggregate

Weekly Downloads

100

Version

0.5.1

License

Unlicense

Unpacked Size

8.65 kB

Total Files

9

Last publish

Collaborators

  • srilq