oh boy.
This commit is contained in:
parent
390b4029b4
commit
91fe0edfcd
1 changed files with 20 additions and 14 deletions
10
index.ts
10
index.ts
|
@ -12,9 +12,12 @@ async function getPatchHrefs() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
await Promise.all(
|
||||||
[...Array(7).keys()]
|
[...Array(7).keys()]
|
||||||
.map((val) => ++val)
|
.map((val) => ++val)
|
||||||
.map(async (page) => {
|
.map((page) => {
|
||||||
|
return (async () => {
|
||||||
const req = await fetch(getGalleryPageHref(page));
|
const req = await fetch(getGalleryPageHref(page));
|
||||||
const data = parse(await req.text());
|
const data = parse(await req.text());
|
||||||
|
|
||||||
|
@ -27,7 +30,10 @@ async function getPatchHrefs() {
|
||||||
?.getElementsByTagName("a")
|
?.getElementsByTagName("a")
|
||||||
.map((el) => el.getAttribute("href"))
|
.map((el) => el.getAttribute("href"))
|
||||||
.filter((el) => el) as string[];
|
.filter((el) => el) as string[];
|
||||||
});
|
})();
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
).flat();
|
||||||
}
|
}
|
||||||
|
|
||||||
const allPatches = await getPatchHrefs();
|
const allPatches = await getPatchHrefs();
|
||||||
|
|
Loading…
Reference in a new issue