Skip to content

Latest commit

 

History

History
 
 

uk_UA

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

dictionary-uk-ua

Ukrainian (Ukraine) spelling dictionary in UTF-8.

Useful with hunspell (node bindings), Open Office, LibreOffice, FireFox and Thunderbird, or place them in ~/Library/Spelling on OS X.

Generated by wooorm/dictionaries, from this dictionary.

Installation

npm:

npm install dictionary-uk-ua

Usage

var ukUA = require('dictionary-uk-ua');

ukUA(function (err, result) {
    if (err) throw err;

    console.log(result);
    /*
     * Yields:
     * { dic: <Buffer>,
     *   aff: <Buffer> }
     */
});

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:

var path = require('path');
var base = require.resolve('dictionary-uk-ua');

// NEVER USE `readFileSync` IN PRODUCTION.
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). Rest: MIT © Titus Wormer.