mrs-toolbox-cli 0.0.130 → 0.0.133
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/88b0986a7186d029-atomicfu-js-ir.js +1 -1
- package/clikt-clikt-mordant.js +18 -18
- package/clikt-clikt.js +1277 -1277
- package/colormath-root-colormath.js +433 -433
- package/com.mrs.platform.configuration.dto.js +7 -7
- package/com.mrs.platform.configuration.dto.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +68 -67
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin-logging-js-ir.js +4 -4
- package/kotlinx-serialization-kotlinx-serialization-core.js +28 -28
- package/kotlinx-serialization-kotlinx-serialization-json.js +17 -17
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +23 -23
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -1
- package/ktor-ktor-client-content-negotiation.js +4 -4
- package/ktor-ktor-client-core.js +13 -13
- package/ktor-ktor-events.js +2 -2
- package/ktor-ktor-http.js +11 -11
- package/ktor-ktor-io.js +7 -7
- package/ktor-ktor-serialization-kotlinx.js +1 -1
- package/ktor-ktor-serialization.js +3 -3
- package/ktor-ktor-utils.js +10 -10
- package/ktor-ktor-websockets.js +3 -3
- package/mordant-mordant.js +568 -568
- package/mrs-toolbox-cli.d.ts +26 -0
- package/mrs-toolbox-cli.js +178 -178
- package/package.json +1 -1
- package/toolbox.js +1573 -1204
- package/toolbox.js.map +1 -1
package/kotlin-kotlin-stdlib.js
CHANGED
|
@@ -42,6 +42,11 @@ if (typeof Math.log2 === 'undefined') {
|
|
|
42
42
|
return Math.log(x) * Math.LOG2E;
|
|
43
43
|
};
|
|
44
44
|
}
|
|
45
|
+
if (typeof Math.log10 === 'undefined') {
|
|
46
|
+
Math.log10 = function (x) {
|
|
47
|
+
return Math.log(x) * Math.LOG10E;
|
|
48
|
+
};
|
|
49
|
+
}
|
|
45
50
|
if (typeof Math.clz32 === 'undefined') {
|
|
46
51
|
Math.clz32 = function (log, LN2) {
|
|
47
52
|
return function (x) {
|
|
@@ -62,10 +67,11 @@ if (typeof Math.sign === 'undefined') {
|
|
|
62
67
|
return x > 0 ? 1 : -1;
|
|
63
68
|
};
|
|
64
69
|
}
|
|
65
|
-
if (typeof
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
70
|
+
if (typeof String.prototype.startsWith === 'undefined') {
|
|
71
|
+
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
72
|
+
position = position || 0;
|
|
73
|
+
return this.lastIndexOf(searchString, position) === position;
|
|
74
|
+
}});
|
|
69
75
|
}
|
|
70
76
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
71
77
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
@@ -78,12 +84,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
78
84
|
return lastIndex !== -1 && lastIndex === position;
|
|
79
85
|
}});
|
|
80
86
|
}
|
|
81
|
-
if (typeof String.prototype.startsWith === 'undefined') {
|
|
82
|
-
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
83
|
-
position = position || 0;
|
|
84
|
-
return this.lastIndexOf(searchString, position) === position;
|
|
85
|
-
}});
|
|
86
|
-
}
|
|
87
87
|
//endregion
|
|
88
88
|
(function (_) {
|
|
89
89
|
'use strict';
|
|
@@ -112,8 +112,8 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
112
112
|
initMetadataForInterface(KtList, 'List', VOID, VOID, [Collection]);
|
|
113
113
|
initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
|
|
114
114
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
115
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
116
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
115
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
|
|
116
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
|
|
117
117
|
initMetadataForInterface(Entry, 'Entry');
|
|
118
118
|
function asJsReadonlyMapView() {
|
|
119
119
|
return createJsReadonlyMapViewFrom(this);
|
|
@@ -140,7 +140,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
140
140
|
initMetadataForObject(Letter, 'Letter');
|
|
141
141
|
initMetadataForObject(OtherLowercase, 'OtherLowercase');
|
|
142
142
|
initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
|
|
143
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection,
|
|
143
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
|
|
144
144
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
145
145
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
146
146
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -153,7 +153,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
153
153
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
|
|
154
154
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
155
155
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
156
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
156
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
|
|
157
157
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
158
158
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
159
159
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
@@ -16267,59 +16267,60 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
16267
16267
|
_.$_$.pf = toULongOrNull;
|
|
16268
16268
|
_.$_$.qf = toULong;
|
|
16269
16269
|
_.$_$.rf = toUShort;
|
|
16270
|
-
_.$_$.sf =
|
|
16271
|
-
_.$_$.tf =
|
|
16272
|
-
_.$_$.uf =
|
|
16273
|
-
_.$_$.vf =
|
|
16274
|
-
_.$_$.wf =
|
|
16275
|
-
_.$_$.xf =
|
|
16276
|
-
_.$_$.yf =
|
|
16277
|
-
_.$_$.zf =
|
|
16278
|
-
_.$_$.ag =
|
|
16279
|
-
_.$_$.bg =
|
|
16280
|
-
_.$_$.cg =
|
|
16281
|
-
_.$_$.dg =
|
|
16282
|
-
_.$_$.eg =
|
|
16283
|
-
_.$_$.fg =
|
|
16284
|
-
_.$_$.gg =
|
|
16285
|
-
_.$_$.hg =
|
|
16286
|
-
_.$_$.ig =
|
|
16287
|
-
_.$_$.jg =
|
|
16288
|
-
_.$_$.kg =
|
|
16289
|
-
_.$_$.lg =
|
|
16290
|
-
_.$_$.mg =
|
|
16291
|
-
_.$_$.ng =
|
|
16292
|
-
_.$_$.og =
|
|
16293
|
-
_.$_$.pg =
|
|
16294
|
-
_.$_$.qg =
|
|
16295
|
-
_.$_$.rg =
|
|
16296
|
-
_.$_$.sg =
|
|
16297
|
-
_.$_$.tg =
|
|
16298
|
-
_.$_$.ug =
|
|
16299
|
-
_.$_$.vg =
|
|
16300
|
-
_.$_$.wg =
|
|
16301
|
-
_.$_$.xg =
|
|
16302
|
-
_.$_$.yg =
|
|
16303
|
-
_.$_$.zg =
|
|
16304
|
-
_.$_$.ah =
|
|
16305
|
-
_.$_$.bh =
|
|
16306
|
-
_.$_$.ch =
|
|
16307
|
-
_.$_$.dh =
|
|
16308
|
-
_.$_$.eh =
|
|
16309
|
-
_.$_$.fh =
|
|
16310
|
-
_.$_$.gh =
|
|
16311
|
-
_.$_$.hh =
|
|
16312
|
-
_.$_$.ih =
|
|
16313
|
-
_.$_$.jh =
|
|
16314
|
-
_.$_$.kh =
|
|
16315
|
-
_.$_$.lh =
|
|
16316
|
-
_.$_$.mh =
|
|
16317
|
-
_.$_$.nh =
|
|
16318
|
-
_.$_$.oh =
|
|
16319
|
-
_.$_$.ph =
|
|
16320
|
-
_.$_$.qh =
|
|
16321
|
-
_.$_$.rh =
|
|
16322
|
-
_.$_$.sh =
|
|
16270
|
+
_.$_$.sf = trimEnd;
|
|
16271
|
+
_.$_$.tf = trimIndent;
|
|
16272
|
+
_.$_$.uf = trimMargin;
|
|
16273
|
+
_.$_$.vf = trimStart;
|
|
16274
|
+
_.$_$.wf = trim;
|
|
16275
|
+
_.$_$.xf = Duration;
|
|
16276
|
+
_.$_$.yf = Uuid;
|
|
16277
|
+
_.$_$.zf = Char;
|
|
16278
|
+
_.$_$.ag = ClassCastException;
|
|
16279
|
+
_.$_$.bg = Comparable;
|
|
16280
|
+
_.$_$.cg = DeepRecursiveFunction;
|
|
16281
|
+
_.$_$.dg = DeepRecursiveScope;
|
|
16282
|
+
_.$_$.eg = Enum;
|
|
16283
|
+
_.$_$.fg = Error_0;
|
|
16284
|
+
_.$_$.gg = Exception;
|
|
16285
|
+
_.$_$.hg = IllegalArgumentException;
|
|
16286
|
+
_.$_$.ig = IllegalStateException;
|
|
16287
|
+
_.$_$.jg = Long;
|
|
16288
|
+
_.$_$.kg = NoSuchElementException;
|
|
16289
|
+
_.$_$.lg = Pair;
|
|
16290
|
+
_.$_$.mg = Result;
|
|
16291
|
+
_.$_$.ng = RuntimeException;
|
|
16292
|
+
_.$_$.og = THROW_CCE;
|
|
16293
|
+
_.$_$.pg = THROW_IAE;
|
|
16294
|
+
_.$_$.qg = Triple;
|
|
16295
|
+
_.$_$.rg = UByteArray;
|
|
16296
|
+
_.$_$.sg = UByte;
|
|
16297
|
+
_.$_$.tg = UIntArray;
|
|
16298
|
+
_.$_$.ug = UInt;
|
|
16299
|
+
_.$_$.vg = ULongArray;
|
|
16300
|
+
_.$_$.wg = ULong;
|
|
16301
|
+
_.$_$.xg = UShortArray;
|
|
16302
|
+
_.$_$.yg = UShort;
|
|
16303
|
+
_.$_$.zg = Unit;
|
|
16304
|
+
_.$_$.ah = UnsupportedOperationException;
|
|
16305
|
+
_.$_$.bh = addSuppressed;
|
|
16306
|
+
_.$_$.ch = arrayOf;
|
|
16307
|
+
_.$_$.dh = closeFinally;
|
|
16308
|
+
_.$_$.eh = countTrailingZeroBits;
|
|
16309
|
+
_.$_$.fh = createFailure;
|
|
16310
|
+
_.$_$.gh = ensureNotNull;
|
|
16311
|
+
_.$_$.hh = invoke;
|
|
16312
|
+
_.$_$.ih = isFinite;
|
|
16313
|
+
_.$_$.jh = isFinite_0;
|
|
16314
|
+
_.$_$.kh = isNaN_0;
|
|
16315
|
+
_.$_$.lh = lazy_0;
|
|
16316
|
+
_.$_$.mh = lazy;
|
|
16317
|
+
_.$_$.nh = noWhenBranchMatchedException;
|
|
16318
|
+
_.$_$.oh = plus_5;
|
|
16319
|
+
_.$_$.ph = stackTraceToString;
|
|
16320
|
+
_.$_$.qh = throwUninitializedPropertyAccessException;
|
|
16321
|
+
_.$_$.rh = toList_3;
|
|
16322
|
+
_.$_$.sh = toString_0;
|
|
16323
|
+
_.$_$.th = to;
|
|
16323
16324
|
//endregion
|
|
16324
16325
|
return _;
|
|
16325
16326
|
}(module.exports));
|