`Promise.all` accepts an array of promises, and returns a new promise which is fulfilled with an array of fulfillment values for the passed promises, or rejected with the reason of the first passed promise to be rejected. It casts all elements of the passed iterable to promises as it runs this
(entries)
| 631 | @static |
| 632 | */ |
| 633 | function all(entries) { |
| 634 | return new Enumerator(this, entries).promise; |
| 635 | } |
| 636 | |
| 637 | /** |
| 638 | `Promise.race` returns a new promise which is settled in the same way as the |
nothing calls this directly
no outgoing calls
no test coverage detected