forked from pioniredu/preslovljivac-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
193 lines (192 loc) · 5.84 KB
/
main.js
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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
import odredi from '@pionir/detektor-js';
export default function preslovi(word, exceptions, type = '') {
let tester = function () { };
if (exceptions) {
exceptions = exceptions.split(', '); //makes an array out of the passed "exceptions" string, if it exists
}
else {
exceptions = false; //exceptions are set to false, just in case
}
if (!type) {
tester = function (word) {
if (odredi(word) === 'Cyrl') {
return true;
}
else {
return false;
}
}
}
if (type === 'Cyrl') {
type = true;
}
else {
type = false;
}
const convMap = new Map([ //a map containing all of the characters and exceptions
["Panjeliniz", "Панјелиниз"],
["Konjug", "Конјуг"],
["Konjuk", "Конјук"],
["Konjun", "Конјун"],
["Anjug", "Анјуг"],
["Podžil", "Поджил"],
["Podžet", "Поджет"],
["Podžanj", "Поджањ"],
["Podžnj", "Поджњ"],
["Predžet", "Преджет"],
["Predživ", "Преджив"],
["Podždr", "Подждр"],
["Podržar", "Подржар"],
["Podžup", "Поджуп"],
["Odžal", "Оджал"],
["Odživ", "Оджив"],
["Odžval", "Оджвал"],
["Odželj", "Оджељ"],
["Odžel", "Оджел"],
["Odžden", "Оджден"],
["Nadžir", "Наджир"],
["Nadžup", "Наджуп"],
["Nadrždrel", "Надрждрел"],
["Nadžanj", "Наджањ"],
["Nadžnj", "Наджњ"],
["Nadžet", "Наджет"],
["Nadživ", "Наджив"],
["Nadžn", "Наджн"],
["Injunkt", "Инјункт"],
["Injek", "Инјек"],
["panjeliniz", "панјелиниз"],
["konjug", "конјуг"],
["konjuk", "конјук"],
["konjun", "конјун"],
["anjug", "анјуг"],
["podžil", "поджил"],
["podžet", "поджет"],
["podžanj", "поджањ"],
["podžnj", "поджњ"],
["predžet", "преджет"],
["predživ", "преджив"],
["podždr", "подждр"],
["podržar", "подржар"],
["podžup", "поджуп"],
["odžal", "оджал"],
["odživ", "оджив"],
["odžval", "оджвал"],
["odželj", "оджељ"],
["odžel", "оджел"],
["odžden", "оджден"],
["nadžir", "наджир"],
["nadžup", "наджуп"],
["nadrždrel", "надрждрел"],
["nadžanj", "наджањ"],
["nadžnj", "наджњ"],
["nadžet", "наджет"],
["nadživ", "наджив"],
["nadžn", "наджн"],
["injunkt", "инјункт"],
["injek", "инјек"],
["NJ", "Њ"],
["Nj", "Њ"],
["NJ", "Њ"],
["Nj", "Њ"],
["LJ", "Љ"],
["Lj", "Љ"],
["LJ", "Љ"],
["Lj", "Љ"],
["nj", "њ"],
["nj", "њ"],
["lj", "љ"],
["lj", "љ"],
["a", "а"],
["b", "б"],
["v", "в"],
["g", "г"],
["dž", "џ"],
["d", "д"],
["đ", "ђ"],
["e", "е"],
["ž", "ж"],
["z", "з"],
["i", "и"],
["j", "ј"],
["k", "к"],
["l", "л"],
["m", "м"],
["n", "н"],
["o", "о"],
["p", "п"],
["r", "р"],
["s", "с"],
["t", "т"],
["ć", "ћ"],
["u", "у"],
["f", "ф"],
["h", "х"],
["c", "ц"],
["č", "ч"],
["š", "ш"],
["x", "кс"],
["y", "иј"],
["w", "в"],
["q", "ку"],
["A", "А"],
["B", "Б"],
["V", "В"],
["G", "Г"],
["DŽ", "Џ"],
["Dž", "Џ"],
["D", "Д"],
["Đ", "Ђ"],
["E", "Е"],
["Ž", "Ж"],
["Z", "З"],
["I", "И"],
["J", "Ј"],
["K", "К"],
["L", "Л"],
["M", "М"],
["N", "Н"],
["O", "О"],
["P", "П"],
["R", "Р"],
["S", "С"],
["T", "Т"],
["Ć", "Ћ"],
["U", "У"],
["F", "Ф"],
["H", "Х"],
["C", "Ц"],
["Č", "Ч"],
["Š", "Ш"],
["X", "КС"],
["Y", "ИЈ"],
["W", "В"],
["Q", "КУ"],
]);
const changer = function (word) { //declaring the logic as a function because we need it again later
if (tester(word) || type) {
for (const [key, value] of convMap) { //if cyrillicExists is true, it replaces cyrillic with latin as latin was less abundant
word = word.replace(RegExp(`${value}`, `gu`), `${key}`); //isus
}
}
else {
for (const [key, value] of convMap) {
word = word.replace(RegExp(`${key}`, 'gu'), `${value}`); //if cyrillicExists is false, it replaces latin with cyrillic as cyrillic was less abundant
}
}
return word;
}
if (exceptions) { //if there are any exceptions, it adds them to the map
if (tester(word) || type) { //adds them this way if they are cyrillic
for (let except of exceptions) {
convMap.set(except, changer(except));
}
}
else {
for (let except of exceptions) { //adds them the opposte way otherwise
convMap.set(changer(except), except);
}
}
}
word = changer(word); //applying the previously declared function
return word;
}