taraskevizer 9.3.2 → 9.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin.js +1 -1
- package/dist/dict/alphabets/arabic.js +2 -2
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -6,7 +6,7 @@ const printWithPrefix = (msg) => {
|
|
|
6
6
|
process.argv.splice(0, 2);
|
|
7
7
|
const checkForOptions = (options) => process.argv[0] && options.includes(process.argv[0].toLowerCase());
|
|
8
8
|
if (checkForOptions(['-v', '--version'])) {
|
|
9
|
-
printWithPrefix("9.3.
|
|
9
|
+
printWithPrefix("9.3.3");
|
|
10
10
|
process.exit(0);
|
|
11
11
|
}
|
|
12
12
|
if (checkForOptions(['-h', '--help'])) {
|
|
@@ -29,7 +29,7 @@ export const arabic = {
|
|
|
29
29
|
[re.gi(presoft + '[іы]'), '$1$2\u0650'],
|
|
30
30
|
[/ [Iі] /g, ' \u0627\u0650 '],
|
|
31
31
|
[re.gi(presoft + '[оёую]'), '$1$2\u064F'],
|
|
32
|
-
[
|
|
32
|
+
[/ʼ/g, 'ع'],
|
|
33
33
|
[/[Ьь]/g, ''],
|
|
34
34
|
// [/[ьʼ]/g, ''],
|
|
35
35
|
[/[ЯяЕе]/g, 'ي\u064E'],
|
|
@@ -60,7 +60,7 @@ export const arabic = {
|
|
|
60
60
|
[/[Цц]/g, 'ࢯ'],
|
|
61
61
|
[/[Чч]/g, 'چ'],
|
|
62
62
|
[/[Шш]/g, 'ش'],
|
|
63
|
-
[
|
|
63
|
+
[/,/g, '،'],
|
|
64
64
|
[/\?/g, '؟'],
|
|
65
65
|
]),
|
|
66
66
|
};
|