git-semver-tagger 2.4.1 → 2.5.0

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.
@@ -129,7 +129,7 @@
129
129
  initMetadataForClass(Tagger, 'Tagger', Tagger, CliktCommand);
130
130
  //endregion
131
131
  function Versions() {
132
- this.s3f_1 = '2.4.1';
132
+ this.s3f_1 = '2.5.0';
133
133
  }
134
134
  var Versions_instance;
135
135
  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.log10 === 'undefined') {
41
- Math.log10 = function (x) {
42
- return Math.log(x) * Math.LOG10E;
40
+ if (typeof Math.log2 === 'undefined') {
41
+ Math.log2 = function (x) {
42
+ return Math.log(x) * Math.LOG2E;
43
43
  };
44
44
  }
45
45
  if (typeof Math.clz32 === 'undefined') {
@@ -53,9 +53,9 @@ if (typeof Math.clz32 === 'undefined') {
53
53
  };
54
54
  }(Math.log, Math.LN2);
55
55
  }
56
- if (typeof Math.log2 === 'undefined') {
57
- Math.log2 = function (x) {
58
- return Math.log(x) * Math.LOG2E;
56
+ if (typeof Math.log10 === 'undefined') {
57
+ Math.log10 = function (x) {
58
+ return Math.log(x) * Math.LOG10E;
59
59
  };
60
60
  }
61
61
  if (typeof String.prototype.startsWith === 'undefined') {