@solibo/solibo-sdk 1.0.34-SNAPSHOT → 1.0.34

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.
@@ -374,7 +374,7 @@
374
374
  function addFormatStructureForTime(structure) {
375
375
  this.t1t(structure);
376
376
  }
377
- initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
377
+ initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
378
378
  initMetadataForClass(Builder_0, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder]);
379
379
  initMetadataForClass(LocalDateTimeFormat, 'LocalDateTimeFormat', VOID, AbstractDateTimeFormat);
380
380
  function set_fractionOfSecond(value) {
@@ -46,22 +46,6 @@ if (typeof Array.prototype.fill === 'undefined') {
46
46
  Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
47
47
  }
48
48
  });
49
- if (typeof Math.trunc === 'undefined') {
50
- Math.trunc = function (x) {
51
- if (isNaN(x)) {
52
- return NaN;
53
- }
54
- if (x > 0) {
55
- return Math.floor(x);
56
- }
57
- return Math.ceil(x);
58
- };
59
- }
60
- if (typeof Math.log10 === 'undefined') {
61
- Math.log10 = function (x) {
62
- return Math.log(x) * Math.LOG10E;
63
- };
64
- }
65
49
  if (typeof Math.clz32 === 'undefined') {
66
50
  Math.clz32 = function (log, LN2) {
67
51
  return function (x) {
@@ -73,6 +57,22 @@ if (typeof Math.clz32 === 'undefined') {
73
57
  };
74
58
  }(Math.log, Math.LN2);
75
59
  }
60
+ if (typeof Math.log10 === 'undefined') {
61
+ Math.log10 = function (x) {
62
+ return Math.log(x) * Math.LOG10E;
63
+ };
64
+ }
65
+ if (typeof Math.trunc === 'undefined') {
66
+ Math.trunc = function (x) {
67
+ if (isNaN(x)) {
68
+ return NaN;
69
+ }
70
+ if (x > 0) {
71
+ return Math.floor(x);
72
+ }
73
+ return Math.ceil(x);
74
+ };
75
+ }
76
76
  if (typeof String.prototype.startsWith === 'undefined') {
77
77
  Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
78
78
  position = position || 0;