21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
init: function (sJSONData) {
try {
let _oData = JSON.parse(sJSONData);
this._lTagMiscPlur = _oData.lTagMiscPlur;
this._lTagMasForm = _oData.lTagMasForm;
this._dMiscPlur = helpers.objectToMap(_oData.dMiscPlur);
this._dMasForm = helpers.objectToMap(_oData.dMasForm);
}
catch (e) {
console.error(e);
}
},
isFemForm: function (sWord) {
|
>
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
init: function (sJSONData) {
try {
let _oData = JSON.parse(sJSONData);
this._lTagMiscPlur = _oData.lTagMiscPlur;
this._lTagMasForm = _oData.lTagMasForm;
this._dMiscPlur = helpers.objectToMap(_oData.dMiscPlur);
this._dMasForm = helpers.objectToMap(_oData.dMasForm);
this.isInit = true;
}
catch (e) {
console.error(e);
}
},
isFemForm: function (sWord) {
|