1
2
3
4
5
6
import { blob } from "https://esm.town/v/std/blob?v=12";
export async function getAllWords(): Promise<string[]> {
const allWords = await blob.getJSON("words") as string[];
return allWords;
}