c-degni_text-autocomplete/dictionary.ts

7 lines
No EOL
186 B
TypeScript

import { Trie } from './trie';
import { DEFAULT_WORDS } from './words'
let DEFAULT_TRIE = new Trie();
DEFAULT_WORDS.forEach(word => DEFAULT_TRIE.insert(word));
export { DEFAULT_TRIE };