Package Exports
- dictionary-pt-br
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-pt-br) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
dictionary-pt-br
Portuguese (Brazil) 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-pt-brUsage
var ptBR = require('dictionary-pt-br');
ptBR(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-pt-br');
// 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: LGPL-2.1. Rest: MIT © Titus Wormer.