git-semver-tagger 2.5.2 → 2.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.
@@ -131,7 +131,7 @@
131
131
  initMetadataForClass(Tagger, 'Tagger', Tagger, CliktCommand);
132
132
  //endregion
133
133
  function Versions() {
134
- this.s3f_1 = '2.5.2';
134
+ this.s3f_1 = '2.5.3';
135
135
  }
136
136
  var Versions_instance;
137
137
  function Versions_getInstance() {
@@ -37,9 +37,9 @@ 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;
40
+ if (typeof Math.log10 === 'undefined') {
41
+ Math.log10 = function (x) {
42
+ return Math.log(x) * Math.LOG10E;
43
43
  };
44
44
  }
45
45
  if (typeof Math.clz32 === 'undefined') {
@@ -53,11 +53,17 @@ if (typeof Math.clz32 === 'undefined') {
53
53
  };
54
54
  }(Math.log, Math.LN2);
55
55
  }
56
- if (typeof Math.log10 === 'undefined') {
57
- Math.log10 = function (x) {
58
- return Math.log(x) * Math.LOG10E;
56
+ if (typeof Math.log2 === 'undefined') {
57
+ Math.log2 = function (x) {
58
+ return Math.log(x) * Math.LOG2E;
59
59
  };
60
60
  }
61
+ if (typeof String.prototype.startsWith === 'undefined') {
62
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
63
+ position = position || 0;
64
+ return this.lastIndexOf(searchString, position) === position;
65
+ }});
66
+ }
61
67
  if (typeof String.prototype.endsWith === 'undefined') {
62
68
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
63
69
  var subjectString = this.toString();
@@ -69,12 +75,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
69
75
  return lastIndex !== -1 && lastIndex === position;
70
76
  }});
71
77
  }
72
- if (typeof String.prototype.startsWith === 'undefined') {
73
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
74
- position = position || 0;
75
- return this.lastIndexOf(searchString, position) === position;
76
- }});
77
- }
78
78
  //endregion
79
79
  (function (_) {
80
80
  'use strict';
@@ -100,8 +100,8 @@ if (typeof String.prototype.startsWith === 'undefined') {
100
100
  initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
101
101
  initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
102
102
  initMetadataForInterface(MutableIterable, 'MutableIterable');
103
- initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
104
- initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
103
+ initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
104
+ initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
105
105
  initMetadataForCompanion(Companion_0);
106
106
  initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
107
107
  initMetadataForCompanion(Companion_1);
@@ -119,7 +119,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
119
119
  initMetadataForInterface(Comparator, 'Comparator');
120
120
  initMetadataForObject(Unit, 'Unit');
121
121
  initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
122
- initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [Collection, MutableIterable]);
122
+ initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [MutableIterable, Collection]);
123
123
  initMetadataForClass(IteratorImpl, 'IteratorImpl');
124
124
  initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
125
125
  initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [KtMutableList]);
@@ -132,7 +132,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
132
132
  initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [KtMutableList, RandomAccess]);
133
133
  initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [KtMutableMap]);
134
134
  initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet]);
135
- initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable]);
135
+ initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection]);
136
136
  initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet]);
137
137
  initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
138
138
  initMetadataForClass(HashMapKeysDefault$iterator$1);