Echo JS 0.11.0

<~>

tracker1 2721 days ago. link 1 point
Basically Promise.all

    const myItems = await Promise.all(itemIds.map(async (itemId) => {
      return await myService.getItemByItemId(itemId);
    }));