UNPKG

yaspeller

Version:

Search tool typos in the text, files and websites

16 lines (11 loc) 263 B
'use strict'; const Eyo = require('eyo-kernel'); const eyo = new Eyo(); let isInited = false; module.exports = function(text) { if (!isInited) { eyo.dictionary.loadSafeSync(); isInited = true; } return eyo.lint(text, true); };