Teessence
Results
1
issues of
Teessence
``` var dictionary = require('dictionary-ko'); var nspell = require('nspell'); dictionary(ondictionary); function ondictionary(err, dict) { if (err) { throw err } var spell = nspell(dict); console.log(spell.correct('hello')); } ```