git-semver-tagger 1.5.2 → 1.5.3
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.
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
return tmp;
|
|
333
333
|
}
|
|
334
334
|
setMetadataFor(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', interfaceMeta, VOID, [WithUtcOffset]);
|
|
335
|
-
setMetadataFor(Builder, 'Builder', classMeta, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithDate, WithTime
|
|
335
|
+
setMetadataFor(Builder, 'Builder', classMeta, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithUtcOffset, WithDate, WithTime]);
|
|
336
336
|
setMetadataFor(AbstractDateTimeFormat, 'AbstractDateTimeFormat', classMeta);
|
|
337
337
|
setMetadataFor(DateTimeComponentsFormat, 'DateTimeComponentsFormat', classMeta, AbstractDateTimeFormat);
|
|
338
338
|
setMetadataFor(TwoDigitNumber, 'TwoDigitNumber', classMeta);
|
|
@@ -37,11 +37,6 @@ if (typeof Math.log10 === 'undefined') {
|
|
|
37
37
|
return Math.log(x) * Math.LOG10E;
|
|
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,17 @@ 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
|
+
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
|
+
}
|
|
56
62
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
57
63
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
58
64
|
var subjectString = this.toString();
|
|
@@ -64,12 +70,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
64
70
|
return lastIndex !== -1 && lastIndex === position;
|
|
65
71
|
}});
|
|
66
72
|
}
|
|
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;
|
|
@@ -4548,6 +4548,12 @@ if (typeof Math.imul === 'undefined') {
|
|
|
4548
4548
|
}
|
|
4549
4549
|
return min;
|
|
4550
4550
|
}
|
|
4551
|
+
function plus_1(_this__u8e3s4, elements) {
|
|
4552
|
+
var result = ArrayList_init_$Create$_0(_this__u8e3s4.n() + elements.length | 0);
|
|
4553
|
+
result.x(_this__u8e3s4);
|
|
4554
|
+
addAll_0(result, elements);
|
|
4555
|
+
return result;
|
|
4556
|
+
}
|
|
4551
4557
|
function zip(_this__u8e3s4, other) {
|
|
4552
4558
|
// Inline function 'kotlin.collections.zip' call
|
|
4553
4559
|
var first = _this__u8e3s4.t();
|
|
@@ -4585,12 +4591,6 @@ if (typeof Math.imul === 'undefined') {
|
|
|
4585
4591
|
}
|
|
4586
4592
|
return take(_this__u8e3s4, coerceAtLeast(_this__u8e3s4.n() - n | 0, 0));
|
|
4587
4593
|
}
|
|
4588
|
-
function plus_1(_this__u8e3s4, elements) {
|
|
4589
|
-
var result = ArrayList_init_$Create$_0(_this__u8e3s4.n() + elements.length | 0);
|
|
4590
|
-
result.x(_this__u8e3s4);
|
|
4591
|
-
addAll_0(result, elements);
|
|
4592
|
-
return result;
|
|
4593
|
-
}
|
|
4594
4594
|
function singleOrNull(_this__u8e3s4) {
|
|
4595
4595
|
return _this__u8e3s4.n() === 1 ? _this__u8e3s4.e1(0) : null;
|
|
4596
4596
|
}
|