anagram and dictionary added

This commit is contained in:
2026-03-09 14:43:03 -07:00
parent 32002c7770
commit 9c6438d10e
5 changed files with 202 additions and 30 deletions

View File

@@ -372,6 +372,12 @@
}));
}
async function loadWordAnagrams(text) {
return fetchJson(buildApiUrl("/api/v1/words/anagrams", {
text
}));
}
async function loadDeckOptions(forceRefresh = false) {
if (!forceRefresh && deckOptionsCache) {
return deckOptionsCache;
@@ -502,6 +508,7 @@
loadDeckManifest,
loadDeckOptions,
loadGematriaWordsByValue,
loadWordAnagrams,
loadQuizCategories,
loadQuizTemplates,
loadTarotCards,