# dictionary-et Estonian spelling dictionary in UTF-8. Useful with [hunspell][], [`nodehun`][nodehun], [`nspell`][nspell], Open Office, LibreOffice, FireFox and Thunderbird, or [macOS][]. Generated by [`dictionaries`][dictionaries], from [`meso.ee`][source]. ## Installation [npm][]: ```bash npm install dictionary-et ``` ## Usage ```js var et = require('dictionary-et') et(function (err, result) { console.log(err || result) }); ``` Yields: ```js { dic: , aff: } ``` Where `dic` is a buffer for the dictionary file at `index.dic` (in UTF-8), and `aff` is a buffer for the affix file at `index.aff` (in UTF-8). Or directly load the files, using something like: ```js var path = require('path') var base = require.resolve('dictionary-et') fs.readFileSync(path.join(base, 'index.dic'), 'utf-8') fs.readFileSync(path.join(base, 'index.aff'), 'utf-8') ``` ## License Dictionary and affix file: LGPL-2.1. Rest: [MIT][] © [Titus Wormer][home]. [hunspell]: https://hunspell.github.io [nodehun]: https://github.com/nathanjsweet/nodehun [nspell]: https://github.com/wooorm/nspell [macos]: https://github.com/wooorm/dictionaries#macos [source]: http://www.meso.ee/~jjpp/speller [npm]: https://docs.npmjs.com/cli/install [dictionaries]: https://github.com/wooorm/dictionaries [mit]: https://github.com/wooorm/dictionaries/blob/master/LICENSE [home]: https://wooorm.com