This commit is contained in:
adueck 2022-11-01 23:57:54 +05:00
parent b65be34081
commit 67e6706d47
1 changed files with 0 additions and 1 deletions

View File

@ -18,7 +18,6 @@ const lokidb = new loki("", {
export let dictionary: T.Dictionary | undefined = undefined;
// TODO: Abstract dictionary fetch
export function updateDictionary() {
fetch(process.env.LINGDOCS_DICTIONARY_URL || "").then(res => res.arrayBuffer()).then(buffer => {
const dict = readDictionary(buffer as Uint8Array);