UNPKG

263 BJavaScriptView Raw
1'use strict';
2
3const Eyo = require('eyo-kernel');
4const eyo = new Eyo();
5
6let isInited = false;
7
8module.exports = function(text) {
9 if (!isInited) {
10 eyo.dictionary.loadSafeSync();
11 isInited = true;
12 }
13
14 return eyo.lint(text, true);
15};