MCPcopy Create free account
hub / github.com/Code-Bullet/Jump-King / all

Function all

libraries/p5.js:633–635  ·  view source on GitHub ↗

`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)

Source from the content-addressed store, hash-verified

631 @static
632*/
633function 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected