git-semver-tagger 1.4.22 → 1.4.24

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, WithUtcOffset, WithDate, WithTime]);
335
+ setMetadataFor(Builder, 'Builder', classMeta, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithTime, WithDate, WithUtcOffset]);
336
336
  setMetadataFor(AbstractDateTimeFormat, 'AbstractDateTimeFormat', classMeta);
337
337
  setMetadataFor(DateTimeComponentsFormat, 'DateTimeComponentsFormat', classMeta, AbstractDateTimeFormat);
338
338
  setMetadataFor(TwoDigitNumber, 'TwoDigitNumber', classMeta);
package/kotlin/bin/tagger CHANGED
File without changes
@@ -32,6 +32,16 @@ if (typeof Array.prototype.fill === 'undefined') {
32
32
  Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
33
33
  }
34
34
  });
35
+ if (typeof Math.log10 === 'undefined') {
36
+ Math.log10 = function (x) {
37
+ return Math.log(x) * Math.LOG10E;
38
+ };
39
+ }
40
+ if (typeof Math.log2 === 'undefined') {
41
+ Math.log2 = function (x) {
42
+ return Math.log(x) * Math.LOG2E;
43
+ };
44
+ }
35
45
  if (typeof Math.clz32 === 'undefined') {
36
46
  Math.clz32 = function (log, LN2) {
37
47
  return function (x) {
@@ -43,16 +53,6 @@ if (typeof Math.clz32 === 'undefined') {
43
53
  };
44
54
  }(Math.log, Math.LN2);
45
55
  }
46
- if (typeof Math.log10 === 'undefined') {
47
- Math.log10 = function (x) {
48
- return Math.log(x) * Math.LOG10E;
49
- };
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.startsWith === 'undefined') {
57
57
  Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
58
58
  position = position || 0;