Overview
| Comment: | Minimal file to use in node |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | graphspell | njs | nodejs |
| Files: | files | file ages | folders |
| SHA3-256: |
b79bb889b996de002f7f0e4c7777a6fe |
| User & Date: | IllusionPerdu on 2018-10-10 09:36:48 |
| Other Links: | branch diff | manifest | tags |
Context
|
2018-10-10
| ||
| 12:08 | [js] All Grammalecte work in node check-in: 2d5c0dce59 user: IllusionPerdu tags: njs, nodejs | |
| 09:36 | Minimal file to use in node check-in: b79bb889b9 user: IllusionPerdu tags: graphspell, njs, nodejs | |
| 09:19 | Some change to javascript to work in node check-in: a3687f4fd3 user: IllusionPerdu tags: graphspell, njs, nodejs | |
Changes
Added graphspell-js/test/minimal.js version [9a28cea93b].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
/* jshint esversion:6, -W097 */
/* jslint esversion:6 */
/* global require, console */
"use strict";
/*
Reset = "\x1b[0m"
Bright = "\x1b[1m"
Dim = "\x1b[2m"
Underscore = "\x1b[4m"
Blink = "\x1b[5m"
Reverse = "\x1b[7m"
Hidden = "\x1b[8m"
FgBlack = "\x1b[30m"
FgRed = "\x1b[31m"
FgGreen = "\x1b[32m"
FgYellow = "\x1b[33m"
FgBlue = "\x1b[34m"
FgMagenta = "\x1b[35m"
FgCyan = "\x1b[36m"
FgWhite = "\x1b[37m"
BgBlack = "\x1b[40m"
BgRed = "\x1b[41m"
BgGreen = "\x1b[42m"
BgYellow = "\x1b[43m"
BgBlue = "\x1b[44m"
BgMagenta = "\x1b[45m"
BgCyan = "\x1b[46m"
BgWhite = "\x1b[47m"
*/
//console.log('\x1B[2J\x1B[0f'); //Clear the console (cmd win)
var spellCheck = require("../spellchecker.js");
var checker = new spellCheck.SpellChecker('fr', '../_dictionaries');
function perf(sWord){
console.log('\x1b[1m\x1b[31m%s\x1b[0m', '--------------------------------');
console.log('\x1b[36m%s \x1b[32m%s\x1b[0m', 'Vérification de:', sWord);
console.time('Valid:'+sWord);
console.log(sWord, checker.isValid(sWord) );
console.timeEnd('Valid:'+sWord);
console.log('\x1b[36m%s \x1b[32m%s\x1b[0m', 'Suggestion de:', sWord);
console.time('Suggestion:'+sWord);
console.log( JSON.stringify( Array.from(checker.suggest(sWord)) ) );
console.timeEnd('Suggestion:'+sWord);
}
perf('binjour');
perf('saluté');
perf('graphspell');
perf('dicollecte');
|