mrs-toolbox-cli 0.0.118 → 0.0.119

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.
Files changed (37) hide show
  1. package/88b0986a7186d029-atomicfu-js-ir.js.map +1 -1
  2. package/Kotlin-DateTime-library-kotlinx-datetime.js +71 -71
  3. package/Kotlin-DateTime-library-kotlinx-datetime.js.map +1 -1
  4. package/clikt-clikt.js +1126 -1126
  5. package/clikt-clikt.js.map +1 -1
  6. package/colormath-root-colormath.js +362 -362
  7. package/colormath-root-colormath.js.map +1 -1
  8. package/com.mrs.platform.configuration.dto.js +276 -166
  9. package/com.mrs.platform.configuration.dto.js.map +1 -1
  10. package/kotlin-kotlin-stdlib.js +15 -15
  11. package/kotlin-kotlin-stdlib.js.map +1 -1
  12. package/kotlin-logging-js-ir.js +34 -34
  13. package/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -1
  14. package/kotlinx-serialization-kotlinx-serialization-json.js.map +1 -1
  15. package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +6 -6
  16. package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -1
  17. package/ktor-ktor-client-content-negotiation.js +125 -125
  18. package/ktor-ktor-client-content-negotiation.js.map +1 -1
  19. package/ktor-ktor-client-core.js +1404 -1404
  20. package/ktor-ktor-client-core.js.map +1 -1
  21. package/ktor-ktor-events.js +4 -4
  22. package/ktor-ktor-events.js.map +1 -1
  23. package/ktor-ktor-http.js.map +1 -1
  24. package/ktor-ktor-io.js.map +1 -1
  25. package/ktor-ktor-serialization-kotlinx.js.map +1 -1
  26. package/ktor-ktor-utils.js.map +1 -1
  27. package/ktor-ktor-websockets.js.map +1 -1
  28. package/markdown.js +1798 -1798
  29. package/markdown.js.map +1 -1
  30. package/mordant-mordant.js +1638 -1638
  31. package/mordant-mordant.js.map +1 -1
  32. package/mrs-toolbox-cli.d.ts +32 -10
  33. package/mrs-toolbox-cli.js +95 -95
  34. package/mrs-toolbox-cli.js.map +1 -1
  35. package/package.json +1 -1
  36. package/toolbox.js +6112 -6112
  37. package/toolbox.js.map +1 -1
@@ -32,6 +32,11 @@ if (typeof Array.prototype.fill === 'undefined') {
32
32
  Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
33
33
  }
34
34
  });
35
+ if (typeof Math.log2 === 'undefined') {
36
+ Math.log2 = function (x) {
37
+ return Math.log(x) * Math.LOG2E;
38
+ };
39
+ }
35
40
  if (typeof Math.clz32 === 'undefined') {
36
41
  Math.clz32 = function (log, LN2) {
37
42
  return function (x) {
@@ -43,22 +48,11 @@ if (typeof Math.clz32 === 'undefined') {
43
48
  };
44
49
  }(Math.log, Math.LN2);
45
50
  }
46
- if (typeof Math.log2 === 'undefined') {
47
- Math.log2 = function (x) {
48
- return Math.log(x) * Math.LOG2E;
49
- };
50
- }
51
51
  if (typeof Math.log10 === 'undefined') {
52
52
  Math.log10 = function (x) {
53
53
  return Math.log(x) * Math.LOG10E;
54
54
  };
55
55
  }
56
- if (typeof String.prototype.startsWith === 'undefined') {
57
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
58
- position = position || 0;
59
- return this.lastIndexOf(searchString, position) === position;
60
- }});
61
- }
62
56
  if (typeof String.prototype.endsWith === 'undefined') {
63
57
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
64
58
  var subjectString = this.toString();
@@ -70,6 +64,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
70
64
  return lastIndex !== -1 && lastIndex === position;
71
65
  }});
72
66
  }
67
+ if (typeof String.prototype.startsWith === 'undefined') {
68
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
69
+ position = position || 0;
70
+ return this.lastIndexOf(searchString, position) === position;
71
+ }});
72
+ }
73
73
  if (typeof Math.imul === 'undefined') {
74
74
  Math.imul = function imul(a, b) {
75
75
  return (a & 4.29490176E9) * (b & 65535) + (a & 65535) * (b | 0) | 0;
@@ -100,11 +100,11 @@ if (typeof Math.imul === 'undefined') {
100
100
  setMetadataFor(Collection, 'Collection', interfaceMeta, VOID, [Iterable]);
101
101
  setMetadataFor(AbstractCollection, 'AbstractCollection', classMeta, VOID, [Collection]);
102
102
  setMetadataFor(MutableIterable, 'MutableIterable', interfaceMeta, VOID, [Iterable]);
103
- setMetadataFor(AbstractMutableCollection, 'AbstractMutableCollection', classMeta, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
103
+ setMetadataFor(AbstractMutableCollection, 'AbstractMutableCollection', classMeta, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
104
104
  setMetadataFor(IteratorImpl, 'IteratorImpl', classMeta);
105
105
  setMetadataFor(ListIteratorImpl, 'ListIteratorImpl', classMeta, IteratorImpl);
106
106
  setMetadataFor(List, 'List', interfaceMeta, VOID, [Collection]);
107
- setMetadataFor(MutableList, 'MutableList', interfaceMeta, VOID, [List, Collection, MutableIterable]);
107
+ setMetadataFor(MutableList, 'MutableList', interfaceMeta, VOID, [List, MutableIterable, Collection]);
108
108
  setMetadataFor(AbstractMutableList, 'AbstractMutableList', classMeta, AbstractMutableCollection, [AbstractMutableCollection, MutableList]);
109
109
  setMetadataFor(RandomAccess, 'RandomAccess', interfaceMeta);
110
110
  setMetadataFor(SubList, 'SubList', classMeta, AbstractMutableList, [AbstractMutableList, RandomAccess]);
@@ -113,13 +113,13 @@ if (typeof Math.imul === 'undefined') {
113
113
  setMetadataFor(MutableMap, 'MutableMap', interfaceMeta, VOID, [Map_0]);
114
114
  setMetadataFor(AbstractMutableMap, 'AbstractMutableMap', classMeta, AbstractMap, [AbstractMap, MutableMap]);
115
115
  setMetadataFor(Set, 'Set', interfaceMeta, VOID, [Collection]);
116
- setMetadataFor(MutableSet, 'MutableSet', interfaceMeta, VOID, [Set, Collection, MutableIterable]);
116
+ setMetadataFor(MutableSet, 'MutableSet', interfaceMeta, VOID, [Set, MutableIterable, Collection]);
117
117
  setMetadataFor(AbstractMutableSet, 'AbstractMutableSet', classMeta, AbstractMutableCollection, [AbstractMutableCollection, MutableSet]);
118
118
  setMetadataFor(Companion, 'Companion', objectMeta);
119
119
  setMetadataFor(ArrayList, 'ArrayList', classMeta, AbstractMutableList, [AbstractMutableList, MutableList, RandomAccess], ArrayList_init_$Create$);
120
120
  setMetadataFor(HashMap, 'HashMap', classMeta, AbstractMutableMap, [AbstractMutableMap, MutableMap], HashMap_init_$Create$);
121
121
  setMetadataFor(HashMapKeys, 'HashMapKeys', classMeta, AbstractMutableSet, [MutableSet, AbstractMutableSet]);
122
- setMetadataFor(HashMapValues, 'HashMapValues', classMeta, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
122
+ setMetadataFor(HashMapValues, 'HashMapValues', classMeta, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
123
123
  setMetadataFor(HashMapEntrySetBase, 'HashMapEntrySetBase', classMeta, AbstractMutableSet, [MutableSet, AbstractMutableSet]);
124
124
  setMetadataFor(HashMapEntrySet, 'HashMapEntrySet', classMeta, HashMapEntrySetBase);
125
125
  setMetadataFor(HashMapKeysDefault$iterator$1, VOID, classMeta);