summaryrefslogtreecommitdiff
path: root/ext/js/language/ru/russian-text-preprocessors.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/js/language/ru/russian-text-preprocessors.js')
-rw-r--r--ext/js/language/ru/russian-text-preprocessors.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/js/language/ru/russian-text-preprocessors.js b/ext/js/language/ru/russian-text-preprocessors.js
index fbda38c7..e92ec14f 100644
--- a/ext/js/language/ru/russian-text-preprocessors.js
+++ b/ext/js/language/ru/russian-text-preprocessors.js
@@ -24,7 +24,7 @@ export const removeRussianDiacritics = {
options: basicTextProcessorOptions,
process: (str, setting) => {
return setting ? str.replace(/\u0301/g, '') : str;
- }
+ },
};
/** @type {import('language').TextProcessor<boolean>} */
@@ -34,5 +34,5 @@ export const yoToE = {
options: basicTextProcessorOptions,
process: (str, setting) => {
return setting ? str.replace(/ё/g, 'е').replace(/Ё/g, 'Е') : str;
- }
+ },
};