git-digger 1.4.24 → 1.4.26

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.
@@ -277,7 +277,7 @@
277
277
  function addFormatStructureForTime(structure) {
278
278
  this.jw(structure);
279
279
  }
280
- setMetadataFor(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', interfaceMeta, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
280
+ setMetadataFor(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', interfaceMeta, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
281
281
  function offsetHours$default(padding, $super) {
282
282
  padding = padding === VOID ? Padding_ZERO_getInstance() : padding;
283
283
  var tmp;
@@ -330,7 +330,7 @@
330
330
  return tmp;
331
331
  }
332
332
  setMetadataFor(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', interfaceMeta, VOID, [WithUtcOffset]);
333
- setMetadataFor(Builder, 'Builder', classMeta, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithUtcOffset, WithTime, WithDate]);
333
+ setMetadataFor(Builder, 'Builder', classMeta, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithUtcOffset, WithDate, WithTime]);
334
334
  setMetadataFor(AbstractDateTimeFormat, 'AbstractDateTimeFormat', classMeta);
335
335
  setMetadataFor(DateTimeComponentsFormat, 'DateTimeComponentsFormat', classMeta, AbstractDateTimeFormat);
336
336
  setMetadataFor(TwoDigitNumber, 'TwoDigitNumber', classMeta);
package/kotlin/bin/digger CHANGED
File without changes
@@ -32,11 +32,6 @@ 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.log2 === 'undefined') {
36
- Math.log2 = function (x) {
37
- return Math.log(x) * Math.LOG2E;
38
- };
39
- }
40
35
  if (typeof Math.clz32 === 'undefined') {
41
36
  Math.clz32 = function (log, LN2) {
42
37
  return function (x) {
@@ -48,6 +43,11 @@ if (typeof Math.clz32 === 'undefined') {
48
43
  };
49
44
  }(Math.log, Math.LN2);
50
45
  }
46
+ if (typeof Math.log2 === 'undefined') {
47
+ Math.log2 = function (x) {
48
+ return Math.log(x) * Math.LOG2E;
49
+ };
50
+ }
51
51
  if (typeof Math.log10 === 'undefined') {
52
52
  Math.log10 = function (x) {
53
53
  return Math.log(x) * Math.LOG10E;