tsconst responses = await AsyncIterator.from(urls) .map(async (url) => { const response = await fetch(url); return response.json(); }) .toArray();