Socket
Book a DemoInstallSign in
Socket

dictionary-cy-gb

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dictionary-cy-gb

Welsh (United Kingdom) spelling dictionary in UTF-8

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

dictionary-cy-gb

Welsh (United Kingdom) spelling dictionary in UTF-8.

Useful with hunspell, nodehun, nspell, Open Office, LibreOffice, FireFox and Thunderbird, or macOS.

The dictionary itself is gratefully sourced from elastic/hunspell, whose license is included here, and the source for generating the module is directly taken from wooorm/dictionaries.

Installation

npm:

npm install dictionary-cy-gb

Usage

var enGB = require('dictionary-cy-gb')

enGB(function (err, result) {
  console.log(err || 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-cy-gb')

fs.readFileSync(path.join(base, 'index.dic'), 'utf-8')
fs.readFileSync(path.join(base, 'index.aff'), 'utf-8')

License

Dictionary and affix file

GPL – © 2004, Canolfan Bedwyr, University Of Wales, Bangor.

Node module

MIT © Titus Wormer.

Keywords

spelling

FAQs

Package last updated on 02 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts