Creates a Promise that is resolved with an array of results when all of the provided Promises resolve, or rejected when any Promise is rejected. Wraps Promise.all.
A function that should return an array or iterable of Promises. The promises should be created inside this function.
A new Promise.
Generated using TypeDoc
Creates a Promise that is resolved with an array of results when all of the provided Promises resolve, or rejected when any Promise is rejected. Wraps Promise.all.