game_client_logic_deb 1.8.436 → 1.8.438

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.
@@ -57,6 +57,12 @@ if (typeof Math.clz32 === 'undefined') {
57
57
  };
58
58
  }(Math.log, Math.LN2);
59
59
  }
60
+ if (typeof String.prototype.startsWith === 'undefined') {
61
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
62
+ position = position || 0;
63
+ return this.lastIndexOf(searchString, position) === position;
64
+ }});
65
+ }
60
66
  if (typeof String.prototype.endsWith === 'undefined') {
61
67
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
62
68
  var subjectString = this.toString();
@@ -68,12 +74,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
68
74
  return lastIndex !== -1 && lastIndex === position;
69
75
  }});
70
76
  }
71
- if (typeof String.prototype.startsWith === 'undefined') {
72
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
73
- position = position || 0;
74
- return this.lastIndexOf(searchString, position) === position;
75
- }});
76
- }
77
77
  //endregion
78
78
  (function (factory) {
79
79
  if (typeof define === 'function' && define.amd)
@@ -1080,23 +1080,6 @@ if (typeof String.prototype.startsWith === 'undefined') {
1080
1080
  }
1081
1081
  return result;
1082
1082
  }
1083
- function zip_0(_this__u8e3s4, other) {
1084
- // Inline function 'kotlin.collections.zip' call
1085
- var first = _this__u8e3s4.l();
1086
- var second = other.l();
1087
- var tmp0 = collectionSizeOrDefault(_this__u8e3s4, 10);
1088
- // Inline function 'kotlin.comparisons.minOf' call
1089
- var b = collectionSizeOrDefault(other, 10);
1090
- var tmp$ret$0 = Math.min(tmp0, b);
1091
- var list = ArrayList_init_$Create$_0(tmp$ret$0);
1092
- while (first.m() && second.m()) {
1093
- var tmp0_0 = first.n();
1094
- var t2 = second.n();
1095
- var tmp$ret$1 = to(tmp0_0, t2);
1096
- list.j(tmp$ret$1);
1097
- }
1098
- return list;
1099
- }
1100
1083
  function takeLast(_this__u8e3s4, n) {
1101
1084
  // Inline function 'kotlin.require' call
1102
1085
  if (!(n >= 0)) {
@@ -1130,6 +1113,23 @@ if (typeof String.prototype.startsWith === 'undefined') {
1130
1113
  }
1131
1114
  return list;
1132
1115
  }
1116
+ function zip_0(_this__u8e3s4, other) {
1117
+ // Inline function 'kotlin.collections.zip' call
1118
+ var first = _this__u8e3s4.l();
1119
+ var second = other.l();
1120
+ var tmp0 = collectionSizeOrDefault(_this__u8e3s4, 10);
1121
+ // Inline function 'kotlin.comparisons.minOf' call
1122
+ var b = collectionSizeOrDefault(other, 10);
1123
+ var tmp$ret$0 = Math.min(tmp0, b);
1124
+ var list = ArrayList_init_$Create$_0(tmp$ret$0);
1125
+ while (first.m() && second.m()) {
1126
+ var tmp0_0 = first.n();
1127
+ var t2 = second.n();
1128
+ var tmp$ret$1 = to(tmp0_0, t2);
1129
+ list.j(tmp$ret$1);
1130
+ }
1131
+ return list;
1132
+ }
1133
1133
  function toMutableSet(_this__u8e3s4) {
1134
1134
  var tmp;
1135
1135
  if (isInterface(_this__u8e3s4, Collection)) {