master piece

This commit is contained in:
Marc Robin Richter
2026-03-16 11:41:31 +01:00
parent 08e6523bef
commit 508ba07848
23 changed files with 2024 additions and 466 deletions
+5
View File
@@ -0,0 +1,5 @@
export async function loadAsciiArt(path: string): Promise<string[]> {
const res = await fetch(path);
const text = await res.text();
return text.split('\n');
}