p-try
`Start a promise chain
`Start a promise chain
`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome
ES Proposal spec-compliant shim for Promise.allSettled
Settle promises concurrently and get their fulfillment value or rejection reason
Like `Promise.all`, but when all `Promise`s are settled.
ES 2021 spec-compliant shim for Promise.any
ES Proposal spec-compliant shim for Promise.allSettled
Simple settled promise
Run an array of functions in parallel, wait to finish when one errors
Promise.all + map for all iterables
Promise.all function that waits for all promises to be settled
Utility to run multiple promises & deliver execution results of all Promises at a time.
[](https://travis-ci.org/Dobby89/promise-all-settled-by-key) [](https://www.npmjs.com/package/pro
Provides a way of knowing when a promise chain is settled. Useful for testing.
A wrapper for the default promise object in javascirpt which gives more control over the state and value of a promise as it progresses.
ES Proposal spec-compliant shim for Promise.any, ported to TypeScript
Iterate over promises as they're fulfilled.
Better way to cancel promises using AbortSignal
Returns the first Promise in an iterable to resolve
Works like Promise.allSettled except it will reject with an AggregateError if some of the promises rejected, otherwise resolves with the fulfilled values.