top | item 9180948

(no title)

highpixels | 11 years ago

await* is awesome too:

    let arr = [/* an array of promises *]
    await* arr;
Essentially the same as Promise.all

    let arr = [/* an array of promises *]
    await Promise.all(arr)

discuss

order

No comments yet.