Hacker News new | ask | show | jobs
by highpixels 4112 days 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)