@shakerquiz/utilities 0.5.211 → 0.5.213
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/package.json
CHANGED
|
@@ -47,7 +47,7 @@ export const QuantifierTitle = Object.freeze({
|
|
|
47
47
|
[Numerosity['Singular']]: Object.freeze({
|
|
48
48
|
[Gender['Masculine']]: Object.freeze({
|
|
49
49
|
[Quantifier['Any']]: 'Любой',
|
|
50
|
-
[Quantifier['None']]: '
|
|
50
|
+
[Quantifier['None']]: 'Нет',
|
|
51
51
|
[Quantifier['Single']]: 'Один',
|
|
52
52
|
[Quantifier['Many']]: 'Много',
|
|
53
53
|
[Quantifier['All']]: 'Все',
|
|
@@ -55,7 +55,7 @@ export const QuantifierTitle = Object.freeze({
|
|
|
55
55
|
|
|
56
56
|
[Gender['Feminine']]: Object.freeze({
|
|
57
57
|
[Quantifier['Any']]: 'Любая',
|
|
58
|
-
[Quantifier['None']]: '
|
|
58
|
+
[Quantifier['None']]: 'Нет',
|
|
59
59
|
[Quantifier['Single']]: 'Одна',
|
|
60
60
|
[Quantifier['Many']]: 'Много',
|
|
61
61
|
[Quantifier['All']]: 'Все',
|
|
@@ -63,7 +63,7 @@ export const QuantifierTitle = Object.freeze({
|
|
|
63
63
|
|
|
64
64
|
[Gender['Neuter']]: Object.freeze({
|
|
65
65
|
[Quantifier['Any']]: 'Любое',
|
|
66
|
-
[Quantifier['None']]: '
|
|
66
|
+
[Quantifier['None']]: 'Нет',
|
|
67
67
|
[Quantifier['Single']]: 'Одно',
|
|
68
68
|
[Quantifier['Many']]: 'Много',
|
|
69
69
|
[Quantifier['All']]: 'Все',
|
|
@@ -73,7 +73,7 @@ export const QuantifierTitle = Object.freeze({
|
|
|
73
73
|
[Numerosity['Plural']]: Object.freeze({
|
|
74
74
|
[Gender['Indeterminate']]: Object.freeze({
|
|
75
75
|
[Quantifier['Any']]: 'Любые',
|
|
76
|
-
[Quantifier['None']]: '
|
|
76
|
+
[Quantifier['None']]: 'Нет',
|
|
77
77
|
[Quantifier['Single']]: 'Один',
|
|
78
78
|
[Quantifier['Many']]: 'Много',
|
|
79
79
|
[Quantifier['All']]: 'Все',
|
package/source/functions/key.js
CHANGED
|
@@ -6,10 +6,13 @@ export const tag = Object.freeze(
|
|
|
6
6
|
/**
|
|
7
7
|
* @template {keyof typeof import('../enumerations/method.js').Method} M
|
|
8
8
|
* @template {keyof typeof import('../enumerations/route.js').Route} R
|
|
9
|
+
* @template {typeof import('../enumerations/route.js').RoutePathname[R]} P
|
|
9
10
|
*
|
|
10
11
|
* @param {M} m
|
|
11
12
|
* @param {R} r
|
|
12
13
|
* @param {string[]} p
|
|
14
|
+
*
|
|
15
|
+
* @returns {`${M}/${P}`}
|
|
13
16
|
*/
|
|
14
17
|
(m, r, p) => {
|
|
15
18
|
var method = inferMethod(m)
|