@contrast/agent 4.19.7 → 4.20.2
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/lib/assess/policy/signatures.json +2 -2
- package/lib/assess/sinks/mongodb.js +34 -40
- package/lib/core/arch-components/mongodb.js +87 -29
- package/lib/core/async-storage/hooks/mongodb.js +77 -25
- package/lib/core/async-storage/index.js +1 -1
- package/lib/libraries.js +1 -1
- package/lib/list-installed.js +14 -20
- package/node_modules/moment/CHANGELOG.md +13 -1
- package/node_modules/moment/dist/locale/sr-cyrl.js +3 -2
- package/node_modules/moment/dist/locale/sr.js +3 -2
- package/node_modules/moment/dist/moment.js +3 -3
- package/node_modules/moment/locale/sr-cyrl.js +3 -2
- package/node_modules/moment/locale/sr.js +3 -2
- package/node_modules/moment/min/locales.js +6 -4
- package/node_modules/moment/min/locales.min.js +1 -1
- package/node_modules/moment/min/locales.min.js.map +1 -1
- package/node_modules/moment/min/moment-with-locales.js +8 -6
- package/node_modules/moment/min/moment-with-locales.min.js +1 -1
- package/node_modules/moment/min/moment-with-locales.min.js.map +1 -1
- package/node_modules/moment/min/moment.min.js +1 -1
- package/node_modules/moment/min/moment.min.js.map +1 -1
- package/node_modules/moment/moment.js +3 -3
- package/node_modules/moment/package.json +4 -4
- package/node_modules/moment/src/lib/create/from-string.js +1 -1
- package/node_modules/moment/src/locale/sr-cyrl.js +3 -2
- package/node_modules/moment/src/locale/sr.js +3 -2
- package/node_modules/moment/src/moment.js +2 -2
- package/package.json +1 -1
|
@@ -10097,7 +10097,8 @@
|
|
|
10097
10097
|
return wordKey[2];
|
|
10098
10098
|
},
|
|
10099
10099
|
translate: function (number, withoutSuffix, key, isFuture) {
|
|
10100
|
-
var wordKey = translator$1.words[key]
|
|
10100
|
+
var wordKey = translator$1.words[key],
|
|
10101
|
+
word;
|
|
10101
10102
|
|
|
10102
10103
|
if (key.length === 1) {
|
|
10103
10104
|
// Nominativ
|
|
@@ -10105,7 +10106,7 @@
|
|
|
10105
10106
|
return isFuture || withoutSuffix ? wordKey[0] : wordKey[1];
|
|
10106
10107
|
}
|
|
10107
10108
|
|
|
10108
|
-
|
|
10109
|
+
word = translator$1.correctGrammaticalCase(number, wordKey);
|
|
10109
10110
|
// Nominativ
|
|
10110
10111
|
if (key === 'yy' && withoutSuffix && word === 'годину') {
|
|
10111
10112
|
return number + ' година';
|
|
@@ -10219,7 +10220,8 @@
|
|
|
10219
10220
|
return wordKey[2];
|
|
10220
10221
|
},
|
|
10221
10222
|
translate: function (number, withoutSuffix, key, isFuture) {
|
|
10222
|
-
var wordKey = translator$2.words[key]
|
|
10223
|
+
var wordKey = translator$2.words[key],
|
|
10224
|
+
word;
|
|
10223
10225
|
|
|
10224
10226
|
if (key.length === 1) {
|
|
10225
10227
|
// Nominativ
|
|
@@ -10227,7 +10229,7 @@
|
|
|
10227
10229
|
return isFuture || withoutSuffix ? wordKey[0] : wordKey[1];
|
|
10228
10230
|
}
|
|
10229
10231
|
|
|
10230
|
-
|
|
10232
|
+
word = translator$2.correctGrammaticalCase(number, wordKey);
|
|
10231
10233
|
// Nominativ
|
|
10232
10234
|
if (key === 'yy' && withoutSuffix && word === 'godinu') {
|
|
10233
10235
|
return number + ' godina';
|