git-digger 1.8.30 → 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.
|
@@ -53,12 +53,6 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
53
53
|
};
|
|
54
54
|
}(Math.log, Math.LN2);
|
|
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
|
//endregion
|
|
74
74
|
(function (_) {
|
|
75
75
|
'use strict';
|
|
@@ -94,10 +94,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
94
94
|
initMetadataForInterface(Entry, 'Entry');
|
|
95
95
|
initMetadataForInterface(KtMap, 'Map');
|
|
96
96
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
97
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
97
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
|
|
98
98
|
initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
|
|
99
99
|
initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
|
|
100
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
100
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
|
|
101
101
|
initMetadataForCompanion(Companion_0);
|
|
102
102
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
103
103
|
initMetadataForCompanion(Companion_1);
|
|
@@ -115,7 +115,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
115
115
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
116
116
|
initMetadataForObject(Unit, 'Unit');
|
|
117
117
|
initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
|
|
118
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection,
|
|
118
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
|
|
119
119
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
120
120
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
121
121
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -128,7 +128,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
128
128
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
|
|
129
129
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
130
130
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
131
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
131
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
|
|
132
132
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
133
133
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
134
134
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
@@ -5705,7 +5705,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
5705
5705
|
var tmp_11 = this;
|
|
5706
5706
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
5707
5707
|
// Inline function 'kotlin.js.asDynamic' call
|
|
5708
|
-
var tmp_12 = BigInt;
|
|
5708
|
+
var tmp_12 = typeof BigInt === 'undefined' ? VOID : BigInt;
|
|
5709
5709
|
tmp_11.longClass = new PrimitiveKClassImpl(tmp_12, 'Long', PrimitiveClasses$longClass$lambda);
|
|
5710
5710
|
var tmp_13 = this;
|
|
5711
5711
|
// Inline function 'kotlin.js.unsafeCast' call
|