diff --git a/index.ts b/index.ts index ead1e87..3acaf9c 100644 --- a/index.ts +++ b/index.ts @@ -38,4 +38,14 @@ async function getPatchHrefs() { const allPatches = await getPatchHrefs(); -console.log(allPatches); +const patchRequests = allPatches.map((testPatchUrl) => + (async () => { + const req = await fetch(testPatchUrl); + const data = parse(await req.text()); + return data.getElementsByTagName("h1")[0].nextElementSibling?.innerText; + })(), +); + +const patchDescriptions = await Promise.all(patchRequests); + +console.log(patchDescriptions);