Skip to content

Commit

Permalink
fix: drop unused weak yer (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
noomorph authored Jul 5, 2024
1 parent 79d2b42 commit db8b642
Show file tree
Hide file tree
Showing 5 changed files with 27,500 additions and 27,502 deletions.
2 changes: 0 additions & 2 deletions src/transliterate/transliterate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ function transliterateWord(
// 2 - ethymological, 3 - standard, 4 - slovianto
if (flav == '2' || flav == '3' || flav == '4') {
iW = iW.replace(/ê/g, 'ě');
iW = iW.replace(/ȯ%/g, 'o%');
iW = iW.replace(/ŭ/g, 'v');
iW = iW.replace(/[]/g, '');
iW = iW.replace(/[`]/g, '#%');
Expand Down Expand Up @@ -161,7 +160,6 @@ function transliterateWord(
iW = iW.replace(/[ęė]/g, 'e');
iW = iW.replace(/ê/g, 'ě');
iW = iW.replace(/y/g, 'i');
iW = iW.replace(/ȯ%/g, 'o%');
iW = iW.replace(/([šžčcj])ě/g, '$1e');
iW = iW.replace(/[`]/g, '#%');
iW = iW.replace(/ı/g, '');
Expand Down
Loading

0 comments on commit db8b642

Please sign in to comment.