69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
cleanWord: function (sWord) {
// word clean for the user who make commun and preditive error help suggest
// remove letters repeated more than 2 times
if (sWord.match(/(.)(\1){2,}/igm)){
sWord = sWord.replace(/(.*)(.)(.\2)/igm,'$1$2').replace(/(.)(\1)+/igm,'$1$1');
}
// words ending with -ik -> replace with -ique
if (sWord.match(/ik$/ig)){
sWord = sWord.replace(/(.*)ik$/ig,'$1ique');
}
return sWord;
},
_xTransNumbersToExponent: new Map([
["0", "⁰"], ["1", "¹"], ["2", "²"], ["3", "³"], ["4", "⁴"], ["5", "⁵"], ["6", "⁶"], ["7", "⁷"], ["8", "⁸"], ["9", "⁹"]
]),
|
<
<
<
<
|
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
cleanWord: function (sWord) {
// word clean for the user who make commun and preditive error help suggest
// remove letters repeated more than 2 times
if (sWord.match(/(.)(\1){2,}/igm)){
sWord = sWord.replace(/(.*)(.)(.\2)/igm,'$1$2').replace(/(.)(\1)+/igm,'$1$1');
}
return sWord;
},
_xTransNumbersToExponent: new Map([
["0", "⁰"], ["1", "¹"], ["2", "²"], ["3", "³"], ["4", "⁴"], ["5", "⁵"], ["6", "⁶"], ["7", "⁷"], ["8", "⁸"], ["9", "⁹"]
]),
|