# dictionary-hy-arevmda Armenian (Western Armenian) 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 [`araktransfer`][source]. ## Installation [npm][]: ```bash npm install dictionary-hy-arevmda ``` ## Usage ```js var hyArevmda = require('dictionary-hy-arevmda') hyArevmda(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-hy-arevmda') fs.readFileSync(path.join(base, 'index.dic'), 'utf-8') fs.readFileSync(path.join(base, 'index.aff'), 'utf-8') ``` ## License Dictionary and affix file: [(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)](https://github.com/wooorm/dictionaries/blob/master/dictionaries/hy-arevmda/LICENSE). Rest: MIT © [Titus Wormer][home]. [hunspell]: http://hunspell.github.io [nodehun]: https://github.com/nathanjsweet/nodehun [nspell]: https://github.com/wooorm/nspell [macos]: https://github.com/wooorm/dictionaries#macos [source]: https://sites.google.com/site/araktransfer/home/spell-checkers [npm]: https://docs.npmjs.com/cli/install [dictionaries]: https://github.com/wooorm/dictionaries [home]: https://wooorm.com