git-semver-tagger 1.8.29 → 1.8.31
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.
|
@@ -37,11 +37,6 @@ if (typeof Array.prototype.fill === 'undefined') {
|
|
|
37
37
|
Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
|
|
38
38
|
}
|
|
39
39
|
});
|
|
40
|
-
if (typeof Math.log2 === 'undefined') {
|
|
41
|
-
Math.log2 = function (x) {
|
|
42
|
-
return Math.log(x) * Math.LOG2E;
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
40
|
if (typeof Math.clz32 === 'undefined') {
|
|
46
41
|
Math.clz32 = function (log, LN2) {
|
|
47
42
|
return function (x) {
|
|
@@ -53,6 +48,11 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
53
48
|
};
|
|
54
49
|
}(Math.log, Math.LN2);
|
|
55
50
|
}
|
|
51
|
+
if (typeof Math.log2 === 'undefined') {
|
|
52
|
+
Math.log2 = function (x) {
|
|
53
|
+
return Math.log(x) * Math.LOG2E;
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
56
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
57
57
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
58
58
|
var subjectString = this.toString();
|
|
@@ -96,8 +96,8 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
96
96
|
initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
|
|
97
97
|
initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
|
|
98
98
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
99
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
100
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
99
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
|
|
100
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
|
|
101
101
|
initMetadataForCompanion(Companion_0);
|
|
102
102
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
103
103
|
initMetadataForCompanion(Companion_1);
|
|
@@ -116,7 +116,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
116
116
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
117
117
|
initMetadataForObject(Unit, 'Unit');
|
|
118
118
|
initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
|
|
119
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection,
|
|
119
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
|
|
120
120
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
121
121
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
122
122
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -129,7 +129,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
129
129
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
|
|
130
130
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
131
131
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
132
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
132
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
|
|
133
133
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
134
134
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
135
135
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
@@ -6079,7 +6079,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
6079
6079
|
var tmp_11 = this;
|
|
6080
6080
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
6081
6081
|
// Inline function 'kotlin.js.asDynamic' call
|
|
6082
|
-
var tmp_12 = BigInt;
|
|
6082
|
+
var tmp_12 = typeof BigInt === 'undefined' ? VOID : BigInt;
|
|
6083
6083
|
tmp_11.longClass = new PrimitiveKClassImpl(tmp_12, 'Long', PrimitiveClasses$longClass$lambda);
|
|
6084
6084
|
var tmp_13 = this;
|
|
6085
6085
|
// Inline function 'kotlin.js.unsafeCast' call
|