master piece
This commit is contained in:
@@ -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');
|
||||
}
|
||||
Reference in New Issue
Block a user