![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
dictionary-isv
Advanced tools
Interslavic spelling dictionary in UTF-8.
Useful with hunspell, nodehun
, nspell
,
Open Office, LibreOffice, Firefox and Thunderbird, or macOS.
Generated by @orlean-git's Python package in this repository.
npm:
npm install dictionary-isv
The package exports multiple dictionaries:
var dictionary = require('dictionary-isv');
// or the aliased version:
var dictionary = require('dictionary-isv/combined');
var dictionary = require('dictionary-isv/etymological');
var dictionary = require('dictionary-isv/latin');
var dictionary = require('dictionary-isv/cyrillic');
Every exported module is an asynchronous function with a callback, e.g.:
dictionary(function (err, result) {
console.log(err || result)
// -> {dic: <Buffer>, aff: <Buffer>}
});
where:
dic
is a Buffer
for the dictionary file at index.dic
(in UTF-8)aff
is a Buffer
for the affix file at index.aff
(in UTF-8).Also, you can directly load the files, using the respective IETF BCP 47 language codes:
var path = require('path')
var base = path.dirname(require.resolve('dictionary-isv'));
// combined:
fs.readFileSync(path.join(base, 'dict/art-x-interslv.dic'), 'utf-8')
fs.readFileSync(path.join(base, 'dict/art-x-interslv.aff'), 'utf-8')
// etymological:
fs.readFileSync(path.join(base, 'dict/art-Latn-x-interslv-etymolog.dic'), 'utf-8')
fs.readFileSync(path.join(base, 'dict/art-Latn-x-interslv-etymolog.aff'), 'utf-8')
// Latin:
fs.readFileSync(path.join(base, 'dict/art-Latn-x-interslv.dic'), 'utf-8')
fs.readFileSync(path.join(base, 'dict/art-Latn-x-interslv.aff'), 'utf-8')
// Cyrillic:
fs.readFileSync(path.join(base, 'dict/art-Cyrl-x-interslv.dic'), 'utf-8')
fs.readFileSync(path.join(base, 'dict/art-Cyrl-x-interslv.aff'), 'utf-8')
The original README: Titus Wormer.
FAQs
Interslavic spelling dictionary in UTF-8
The npm package dictionary-isv receives a total of 0 weekly downloads. As such, dictionary-isv popularity was classified as not popular.
We found that dictionary-isv demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.