JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 287
  • Score
    100M100P100Q80393F
  • License Apache-2.0

Klingon (or tlhIngan Hol) spelling dictionary in UTF-8

Package Exports

  • dictionary-tlh
  • dictionary-tlh/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dictionary-tlh) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

dictionary-tlh

Klingon (or tlhIngan Hol) spelling dictionary in UTF-8.

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

Generated by dictionaries from PanderMusubi/klingon.

Install

npm:

npm install dictionary-tlh

Use

var tlh = require('dictionary-tlh')

tlh(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-tlh')

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

License

Dictionary and affix file: Apache-2.0. Rest: MIT © Titus Wormer.