384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
|
filterSugg: function (aSugg) {
return aSugg.filter((sSugg) => { return !sSugg.endsWith("è") && !sSugg.endsWith("È"); });
}
};
if (typeof exports !== 'undefined') {
exports._xTransCharsForSpelling = char_player._xTransCharsForSpelling;
exports.spellingNormalization = char_player.spellingNormalization;
exports._xTransCharsForSimplification = char_player._xTransCharsForSimplification;
exports.simplifyWord = char_player.simplifyWord;
exports.aVowel = char_player.aVowel;
exports.aConsonant = char_player.aConsonant;
exports.aDouble = char_player.aDouble;
|
|
|
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
|
filterSugg: function (aSugg) {
return aSugg.filter((sSugg) => { return !sSugg.endsWith("è") && !sSugg.endsWith("È"); });
}
};
if (typeof(exports) !== 'undefined') {
exports._xTransCharsForSpelling = char_player._xTransCharsForSpelling;
exports.spellingNormalization = char_player.spellingNormalization;
exports._xTransCharsForSimplification = char_player._xTransCharsForSimplification;
exports.simplifyWord = char_player.simplifyWord;
exports.aVowel = char_player.aVowel;
exports.aConsonant = char_player.aConsonant;
exports.aDouble = char_player.aDouble;
|