taraskevizer 6.1.15 → 6.1.16
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/index.cjs +3 -4
- package/dist/index.js +3 -4
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -7,7 +7,7 @@ const printWithPrefix = (msg) => {
|
|
|
7
7
|
process.argv.splice(0, 2);
|
|
8
8
|
const checkForOptions = (options) => process.argv[0] && options.includes(process.argv[0].toLowerCase());
|
|
9
9
|
if (checkForOptions(["-v", "--version"])) {
|
|
10
|
-
printWithPrefix("6.1.
|
|
10
|
+
printWithPrefix("6.1.16");
|
|
11
11
|
process.exit(0);
|
|
12
12
|
}
|
|
13
13
|
if (checkForOptions(["-h", "--help"])) {
|
package/dist/index.cjs
CHANGED
|
@@ -156,7 +156,7 @@ var common = {
|
|
|
156
156
|
[/э/, "e"],
|
|
157
157
|
[/ю/, "iu"],
|
|
158
158
|
[/я/, "ia"],
|
|
159
|
-
[
|
|
159
|
+
[/łi(?=[eoua])/, "l"],
|
|
160
160
|
[/łi/, "li"]
|
|
161
161
|
]
|
|
162
162
|
].map(dictFrom.nonGlobal),
|
|
@@ -212,9 +212,8 @@ var common = {
|
|
|
212
212
|
[/Ш/, "Š"],
|
|
213
213
|
[/Ы/, "Y"],
|
|
214
214
|
[/Э/, "E"],
|
|
215
|
-
[
|
|
216
|
-
[/Ł
|
|
217
|
-
[/ŁI/, "LI"]
|
|
215
|
+
[/Ł[Ii](?=[AEOUaeou])/, "L"],
|
|
216
|
+
[/Ł(?=[Ii])/, "L"]
|
|
218
217
|
]
|
|
219
218
|
].map(dictFrom.nonGlobal)
|
|
220
219
|
};
|
package/dist/index.js
CHANGED
|
@@ -131,7 +131,7 @@ var common = {
|
|
|
131
131
|
[/э/, "e"],
|
|
132
132
|
[/ю/, "iu"],
|
|
133
133
|
[/я/, "ia"],
|
|
134
|
-
[
|
|
134
|
+
[/łi(?=[eoua])/, "l"],
|
|
135
135
|
[/łi/, "li"]
|
|
136
136
|
]
|
|
137
137
|
].map(dictFrom.nonGlobal),
|
|
@@ -187,9 +187,8 @@ var common = {
|
|
|
187
187
|
[/Ш/, "Š"],
|
|
188
188
|
[/Ы/, "Y"],
|
|
189
189
|
[/Э/, "E"],
|
|
190
|
-
[
|
|
191
|
-
[/Ł
|
|
192
|
-
[/ŁI/, "LI"]
|
|
190
|
+
[/Ł[Ii](?=[AEOUaeou])/, "L"],
|
|
191
|
+
[/Ł(?=[Ii])/, "L"]
|
|
193
192
|
]
|
|
194
193
|
].map(dictFrom.nonGlobal)
|
|
195
194
|
};
|