Contains utilities for working with Promise objects, including strategies for interoperating with different implementations of Promise.
For more information on Promises, see the open standard.
Based on BlueBird's settle function. Accepts an array of Thenable objects and returns a Thenable that is resolved when all of the
given promises are in a finalized state (i.e. either resolved or rejected).
Based on BlueBird's settle function. Accepts an array of Thenable objects and returns a Thenable that is resolved when all of the
given promises are in a finalized state (i.e. either resolved or rejected).
Contains utilities for working with
Promise
objects, including strategies for interoperating with different implementations ofPromise
. For more information on Promises, see the open standard.