dictionary-en-za
Advanced tools
Comparing version 1.2.0 to 1.2.1
@@ -25,3 +25,4 @@ /* Dependencies. */ | ||
callback(exception, exception ? null : result); | ||
result = exception = null; | ||
exception = null; | ||
result = null; | ||
} | ||
@@ -28,0 +29,0 @@ }); |
{ | ||
"name": "dictionary-en-za", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "English (South Africa) spelling dictionary in UTF-8", | ||
@@ -5,0 +5,0 @@ "license": "LGPL-2.1", |
@@ -5,5 +5,5 @@ # dictionary-en-za | ||
Useful with [hunspell][hunspell] ([node bindings][nodehun]), Open Office, | ||
LibreOffice, FireFox and Thunderbird, or [place them in | ||
`~/Library/Spelling`][osx] on OS X. | ||
Useful with [hunspell][hunspell] ([node bindings][nodehun] or | ||
[plain javascript][nspell]), Open Office, LibreOffice, FireFox and | ||
Thunderbird, or [place them in `~/Library/Spelling`][osx] on OS X. | ||
@@ -27,13 +27,13 @@ Generated by [**wooorm/dictionaries**][dictionaries], from [this | ||
enZA(function (err, result) { | ||
if (err) throw err; | ||
console.log(result); | ||
/* | ||
* Yields: | ||
* { dic: <Buffer>, | ||
* aff: <Buffer> } | ||
*/ | ||
console.log(err || result); | ||
}); | ||
``` | ||
Yields: | ||
```js | ||
{ dic: <Buffer>, | ||
aff: <Buffer> } | ||
``` | ||
Where `dic` is a buffer for the dictionary file at `index.dic` (in UTF-8), and | ||
@@ -55,4 +55,4 @@ `aff` is a buffer for the affix file at `index.aff` (in UTF-8). | ||
Dictionary and affix file: [LGPL-2.1](https://github.com/wooorm/dictionaries/blob/master/dictionaries/en_ZA/LICENSE). Rest: MIT © | ||
[Titus Wormer][home]. | ||
Dictionary and affix file: [LGPL-2.1](https://github.com/wooorm/dictionaries/blob/master/dictionaries/en_ZA/LICENSE). | ||
Rest: MIT © [Titus Wormer][home]. | ||
@@ -63,2 +63,4 @@ [hunspell]: http://hunspell.sourceforge.net | ||
[nspell]: https://github.com/wooorm/nspell | ||
[osx]: https://github.com/wooorm/dictionaries#os-x | ||
@@ -65,0 +67,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
667992
25
71