5 ms·
await* is awesome too: let arr = [/* an array of promises *] await* arr; Essentially the same as Promise.all let arr = [/* an array of promises *
by highpixels 12y 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)