Dynamic imports is standards-track JS :) http://2ality.com/2017/01/import-operator.html
let arr = [/* an array of promises *]
await* arr;
Essentially the same as Promise.all let arr = [/* an array of promises *]
await Promise.all(arr)