25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
}
catch (e) {
console.error(e);
}
},
hasSimil: function (sWord, sPattern=null) {
// return True if there is list of words phonetically similar to sWord
if (!sWord) {
return false;
}
if (this._dWord.has(sWord)) {
if (sPattern) {
return this.getSimil(sWord).some(sSimil => this._dMorph.gl_get(sSimil, []).some(sMorph => sMorph.search(sPattern) >= 0));
}
|
|
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
}
catch (e) {
console.error(e);
}
},
hasSimil: function (sWord, sPattern=null) {
// return True if there is list of words phonetically similar to <sWord>
if (!sWord) {
return false;
}
if (this._dWord.has(sWord)) {
if (sPattern) {
return this.getSimil(sWord).some(sSimil => this._dMorph.gl_get(sSimil, []).some(sMorph => sMorph.search(sPattern) >= 0));
}
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
return true;
}
}
return false;
},
getSimil: function (sWord) {
// return list of words phonetically similar to sWord
if (!sWord) {
return [];
}
if (this._dWord.has(sWord)) {
return this._lSet[this._dWord.get(sWord)];
}
if (sWord.slice(0,1).gl_isUpperCase()) {
sWord = sWord.toLowerCase();
if (this._dWord.has(sWord)) {
return this._lSet[this._dWord.get(sWord)];
}
}
return [];
},
selectSimil: function (sWord, sPattern) {
// return a set of words phonetically similar to sWord and whom POS is matching sPattern
if (!sPattern) {
return new Set(this.getSimil(sWord));
}
let aSelect = new Set();
for (let sSimil of this.getSimil(sWord)) {
for (let sMorph of this._dMorph.gl_get(sSimil, [])) {
if (sMorph.search(sPattern) >= 0) {
aSelect.add(sSimil);
}
}
}
return aSelect;
}
};
// Initialization
if (!phonet.bInit && typeof(process) !== 'undefined') {
// NodeJS
|
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
return true;
}
}
return false;
},
getSimil: function (sWord) {
// return list of words phonetically similar to <sWord>
if (!sWord) {
return [];
}
if (this._dWord.has(sWord)) {
return this._lSet[this._dWord.get(sWord)];
}
if (sWord.slice(0,1).gl_isUpperCase()) {
sWord = sWord.toLowerCase();
if (this._dWord.has(sWord)) {
return this._lSet[this._dWord.get(sWord)];
}
}
return [];
},
selectSimil: function (sWord, sPattern) {
// return a set of words phonetically similar to <sWord> and whom POS is matching <sPattern>
if (!sPattern) {
return new Set(this.getSimil(sWord));
}
let aSelect = new Set();
for (let sSimil of this.getSimil(sWord)) {
for (let sMorph of this._dMorph.gl_get(sSimil, [])) {
if (sMorph.search(sPattern) >= 0) {
aSelect.add(sSimil);
}
}
}
return aSelect;
},
isSimilAs: function (sWord, sSimil) {
// return True if <sWord> phonetically similar to <sSimil> (<sWord> tested with several casing)
if (!sWord) {
return false;
}
let lSimils = this.getSimil(sSimil);
if (lSimils.length == 0) {
return false;
}
if (lSimils.includes(sWord)) {
return true;
}
if (sWord.slice(0,1).gl_isUpperCase()) {
if (lSimils.includes(sWord.toLowerCase())) {
return true;
}
if (sWord.gl_isUpperCase() && lSimils.includes(sWord.gl_toCapitalize())) {
return true;
}
}
return false;
}
};
// Initialization
if (!phonet.bInit && typeof(process) !== 'undefined') {
// NodeJS
|