This commit is contained in:
2025-04-03 20:21:05 +02:00
parent 8333cbf7be
commit f595acff64
24 changed files with 2976 additions and 84 deletions

View File

@@ -0,0 +1,11 @@
// @ts-nocheck
const data = await fetch(
'https://api.neatqueue.com/api/history/1226193436521267223'
).then((res) => res.json())
const parsed_and_sorted = data.data.toSorted((a, b) => {
return a.game_num - b.game_num
})
await Bun.write('./src/data.json', JSON.stringify(parsed_and_sorted, null, 2))