git-digger 1.2.6 → 1.2.8

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.
@@ -53,6 +53,12 @@ if (typeof Math.log2 === 'undefined') {
53
53
  return Math.log(x) * Math.LOG2E;
54
54
  };
55
55
  }
56
+ if (typeof String.prototype.startsWith === 'undefined') {
57
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
58
+ position = position || 0;
59
+ return this.lastIndexOf(searchString, position) === position;
60
+ }});
61
+ }
56
62
  if (typeof String.prototype.endsWith === 'undefined') {
57
63
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
58
64
  var subjectString = this.toString();
@@ -64,12 +70,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
64
70
  return lastIndex !== -1 && lastIndex === position;
65
71
  }});
66
72
  }
67
- if (typeof String.prototype.startsWith === 'undefined') {
68
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
69
- position = position || 0;
70
- return this.lastIndexOf(searchString, position) === position;
71
- }});
72
- }
73
73
  if (typeof Math.imul === 'undefined') {
74
74
  Math.imul = function imul(a, b) {
75
75
  return (a & 4.29490176E9) * (b & 65535) + (a & 65535) * (b | 0) | 0;
@@ -4296,6 +4296,23 @@ if (typeof Math.imul === 'undefined') {
4296
4296
  sort(this_1);
4297
4297
  return this_1;
4298
4298
  }
4299
+ function minus(_this__u8e3s4, elements) {
4300
+ var other = convertToListIfNotCollection(elements);
4301
+ if (other.y())
4302
+ return toList_0(_this__u8e3s4);
4303
+ // Inline function 'kotlin.collections.filterNot' call
4304
+ // Inline function 'kotlin.collections.filterNotTo' call
4305
+ var destination = ArrayList_init_$Create$();
4306
+ var tmp0_iterator = _this__u8e3s4.r();
4307
+ while (tmp0_iterator.s()) {
4308
+ var element = tmp0_iterator.u();
4309
+ // Inline function 'kotlin.collections.minus.<anonymous>' call
4310
+ if (!other.n(element)) {
4311
+ destination.o(element);
4312
+ }
4313
+ }
4314
+ return destination;
4315
+ }
4299
4316
  function zip(_this__u8e3s4, other) {
4300
4317
  // Inline function 'kotlin.collections.zip' call
4301
4318
  var first = _this__u8e3s4.r();
@@ -4580,7 +4597,7 @@ if (typeof Math.imul === 'undefined') {
4580
4597
  function filterNotNull$lambda(it) {
4581
4598
  return it == null;
4582
4599
  }
4583
- function minus(_this__u8e3s4, elements) {
4600
+ function minus_0(_this__u8e3s4, elements) {
4584
4601
  var other = convertToListIfNotCollection(elements);
4585
4602
  if (other.y())
4586
4603
  return toSet_0(_this__u8e3s4);
@@ -11145,195 +11162,196 @@ if (typeof Math.imul === 'undefined') {
11145
11162
  _.$_$.t5 = mapCapacity;
11146
11163
  _.$_$.u5 = mapOf_0;
11147
11164
  _.$_$.v5 = maxOrNull;
11148
- _.$_$.w5 = minus;
11149
- _.$_$.x5 = mutableListOf;
11150
- _.$_$.y5 = mutableMapOf;
11151
- _.$_$.z5 = plus_1;
11152
- _.$_$.a6 = plus_2;
11153
- _.$_$.b6 = plus;
11154
- _.$_$.c6 = plus_0;
11155
- _.$_$.d6 = removeLastOrNull;
11156
- _.$_$.e6 = removeLast;
11157
- _.$_$.f6 = reversed;
11158
- _.$_$.g6 = setOf;
11159
- _.$_$.h6 = setOf_0;
11160
- _.$_$.i6 = single_0;
11161
- _.$_$.j6 = slice_0;
11162
- _.$_$.k6 = slice;
11163
- _.$_$.l6 = sortWith;
11164
- _.$_$.m6 = sortedWith;
11165
- _.$_$.n6 = sorted;
11166
- _.$_$.o6 = sort;
11167
- _.$_$.p6 = sum;
11168
- _.$_$.q6 = takeLast;
11169
- _.$_$.r6 = toBooleanArray;
11170
- _.$_$.s6 = toHashSet;
11171
- _.$_$.t6 = toList_1;
11172
- _.$_$.u6 = toList_0;
11173
- _.$_$.v6 = toList;
11174
- _.$_$.w6 = toMap;
11175
- _.$_$.x6 = toMutableList_0;
11176
- _.$_$.y6 = toMutableMap;
11177
- _.$_$.z6 = toSet_0;
11178
- _.$_$.a7 = toSet;
11179
- _.$_$.b7 = withDefault;
11180
- _.$_$.c7 = withIndex;
11181
- _.$_$.d7 = withIndex_0;
11182
- _.$_$.e7 = zip;
11183
- _.$_$.f7 = compareValues;
11184
- _.$_$.g7 = enumEntries;
11185
- _.$_$.h7 = println_0;
11186
- _.$_$.i7 = println;
11187
- _.$_$.j7 = print;
11188
- _.$_$.k7 = arrayIterator;
11189
- _.$_$.l7 = booleanArray;
11190
- _.$_$.m7 = captureStack;
11191
- _.$_$.n7 = charArrayOf;
11192
- _.$_$.o7 = charArray;
11193
- _.$_$.p7 = charSequenceGet;
11194
- _.$_$.q7 = charSequenceLength;
11195
- _.$_$.r7 = charSequenceSubSequence;
11196
- _.$_$.s7 = classMeta;
11197
- _.$_$.t7 = compareTo_0;
11198
- _.$_$.u7 = equals_0;
11199
- _.$_$.v7 = fillArrayVal;
11200
- _.$_$.w7 = getBooleanHashCode;
11201
- _.$_$.x7 = getNumberHashCode;
11202
- _.$_$.y7 = getPropertyCallableRef;
11203
- _.$_$.z7 = getStringHashCode;
11204
- _.$_$.a8 = hashCode;
11205
- _.$_$.b8 = interfaceMeta;
11206
- _.$_$.c8 = isArray;
11207
- _.$_$.d8 = isBooleanArray;
11208
- _.$_$.e8 = isByteArray;
11209
- _.$_$.f8 = isCharArray;
11210
- _.$_$.g8 = isCharSequence;
11211
- _.$_$.h8 = isDoubleArray;
11212
- _.$_$.i8 = isFloatArray;
11213
- _.$_$.j8 = isIntArray;
11214
- _.$_$.k8 = isInterface;
11215
- _.$_$.l8 = isLongArray;
11216
- _.$_$.m8 = isShortArray;
11217
- _.$_$.n8 = get_js;
11218
- _.$_$.o8 = json;
11219
- _.$_$.p8 = numberRangeToNumber;
11220
- _.$_$.q8 = numberToChar;
11221
- _.$_$.r8 = numberToDouble;
11222
- _.$_$.s8 = numberToInt;
11223
- _.$_$.t8 = numberToLong;
11224
- _.$_$.u8 = objectCreate;
11225
- _.$_$.v8 = objectMeta;
11226
- _.$_$.w8 = protoOf;
11227
- _.$_$.x8 = setMetadataFor;
11228
- _.$_$.y8 = toLong;
11229
- _.$_$.z8 = toString_1;
11230
- _.$_$.a9 = roundToInt;
11231
- _.$_$.b9 = withSign;
11232
- _.$_$.c9 = IntRange;
11233
- _.$_$.d9 = coerceAtLeast_1;
11234
- _.$_$.e9 = coerceAtLeast;
11235
- _.$_$.f9 = coerceAtLeast_0;
11236
- _.$_$.g9 = coerceAtMost;
11237
- _.$_$.h9 = coerceIn;
11238
- _.$_$.i9 = coerceIn_0;
11239
- _.$_$.j9 = until;
11240
- _.$_$.k9 = KClass;
11241
- _.$_$.l9 = KMutableProperty0;
11242
- _.$_$.m9 = KMutableProperty1;
11243
- _.$_$.n9 = KProperty0;
11244
- _.$_$.o9 = KProperty1;
11245
- _.$_$.p9 = KTypeParameter;
11246
- _.$_$.q9 = filter;
11247
- _.$_$.r9 = generateSequence_0;
11248
- _.$_$.s9 = generateSequence;
11249
- _.$_$.t9 = joinToString_1;
11250
- _.$_$.u9 = mapNotNull;
11251
- _.$_$.v9 = map;
11252
- _.$_$.w9 = maxOrNull_0;
11253
- _.$_$.x9 = toList_2;
11254
- _.$_$.y9 = Regex;
11255
- _.$_$.z9 = chunked;
11256
- _.$_$.aa = commonPrefixWith;
11257
- _.$_$.ba = concatToString;
11258
- _.$_$.ca = contains_5;
11259
- _.$_$.da = contains_6;
11260
- _.$_$.ea = drop_0;
11261
- _.$_$.fa = endsWith;
11262
- _.$_$.ga = equals;
11263
- _.$_$.ha = firstOrNull_0;
11264
- _.$_$.ia = first_1;
11265
- _.$_$.ja = get;
11266
- _.$_$.ka = indexOf_6;
11267
- _.$_$.la = indexOf_5;
11268
- _.$_$.ma = isBlank;
11269
- _.$_$.na = isDigit;
11270
- _.$_$.oa = isHighSurrogate;
11271
- _.$_$.pa = isLowSurrogate;
11272
- _.$_$.qa = isLowerCase;
11273
- _.$_$.ra = isWhitespace;
11274
- _.$_$.sa = get_lastIndex_2;
11275
- _.$_$.ta = lastIndexOf;
11276
- _.$_$.ua = matches;
11277
- _.$_$.va = padStart;
11278
- _.$_$.wa = prependIndent;
11279
- _.$_$.xa = removePrefix;
11280
- _.$_$.ya = removeSuffix;
11281
- _.$_$.za = removeSurrounding;
11282
- _.$_$.ab = repeat;
11283
- _.$_$.bb = replace;
11284
- _.$_$.cb = replace_0;
11285
- _.$_$.db = slice_1;
11286
- _.$_$.eb = split_1;
11287
- _.$_$.fb = split;
11288
- _.$_$.gb = startsWith;
11289
- _.$_$.hb = startsWith_2;
11290
- _.$_$.ib = startsWith_1;
11291
- _.$_$.jb = substringBefore;
11292
- _.$_$.kb = take_1;
11293
- _.$_$.lb = titlecase;
11294
- _.$_$.mb = toIntOrNull;
11295
- _.$_$.nb = toInt_0;
11296
- _.$_$.ob = toInt;
11297
- _.$_$.pb = trimIndent;
11298
- _.$_$.qb = trimMargin;
11299
- _.$_$.rb = trimStart;
11300
- _.$_$.sb = trim;
11301
- _.$_$.tb = Duration;
11302
- _.$_$.ub = ArithmeticException;
11303
- _.$_$.vb = Char;
11304
- _.$_$.wb = ClassCastException;
11305
- _.$_$.xb = Comparable;
11306
- _.$_$.yb = Comparator;
11307
- _.$_$.zb = Enum;
11308
- _.$_$.ac = Exception;
11309
- _.$_$.bc = IllegalArgumentException;
11310
- _.$_$.cc = IllegalStateException;
11311
- _.$_$.dc = Long;
11312
- _.$_$.ec = Pair;
11313
- _.$_$.fc = Result;
11314
- _.$_$.gc = RuntimeException;
11315
- _.$_$.hc = THROW_CCE;
11316
- _.$_$.ic = Triple;
11317
- _.$_$.jc = UByteArray;
11318
- _.$_$.kc = UByte;
11319
- _.$_$.lc = UIntArray;
11320
- _.$_$.mc = UInt;
11321
- _.$_$.nc = ULongArray;
11322
- _.$_$.oc = ULong;
11323
- _.$_$.pc = UShortArray;
11324
- _.$_$.qc = UShort;
11325
- _.$_$.rc = Unit;
11326
- _.$_$.sc = addSuppressed;
11327
- _.$_$.tc = arrayOf;
11328
- _.$_$.uc = createFailure;
11329
- _.$_$.vc = ensureNotNull;
11330
- _.$_$.wc = isFinite_0;
11331
- _.$_$.xc = isFinite;
11332
- _.$_$.yc = lazy;
11333
- _.$_$.zc = lazy_0;
11334
- _.$_$.ad = noWhenBranchMatchedException;
11335
- _.$_$.bd = toString_0;
11336
- _.$_$.cd = to;
11165
+ _.$_$.w5 = minus_0;
11166
+ _.$_$.x5 = minus;
11167
+ _.$_$.y5 = mutableListOf;
11168
+ _.$_$.z5 = mutableMapOf;
11169
+ _.$_$.a6 = plus_1;
11170
+ _.$_$.b6 = plus_2;
11171
+ _.$_$.c6 = plus;
11172
+ _.$_$.d6 = plus_0;
11173
+ _.$_$.e6 = removeLastOrNull;
11174
+ _.$_$.f6 = removeLast;
11175
+ _.$_$.g6 = reversed;
11176
+ _.$_$.h6 = setOf;
11177
+ _.$_$.i6 = setOf_0;
11178
+ _.$_$.j6 = single_0;
11179
+ _.$_$.k6 = slice_0;
11180
+ _.$_$.l6 = slice;
11181
+ _.$_$.m6 = sortWith;
11182
+ _.$_$.n6 = sortedWith;
11183
+ _.$_$.o6 = sorted;
11184
+ _.$_$.p6 = sort;
11185
+ _.$_$.q6 = sum;
11186
+ _.$_$.r6 = takeLast;
11187
+ _.$_$.s6 = toBooleanArray;
11188
+ _.$_$.t6 = toHashSet;
11189
+ _.$_$.u6 = toList_1;
11190
+ _.$_$.v6 = toList_0;
11191
+ _.$_$.w6 = toList;
11192
+ _.$_$.x6 = toMap;
11193
+ _.$_$.y6 = toMutableList_0;
11194
+ _.$_$.z6 = toMutableMap;
11195
+ _.$_$.a7 = toSet_0;
11196
+ _.$_$.b7 = toSet;
11197
+ _.$_$.c7 = withDefault;
11198
+ _.$_$.d7 = withIndex;
11199
+ _.$_$.e7 = withIndex_0;
11200
+ _.$_$.f7 = zip;
11201
+ _.$_$.g7 = compareValues;
11202
+ _.$_$.h7 = enumEntries;
11203
+ _.$_$.i7 = println_0;
11204
+ _.$_$.j7 = println;
11205
+ _.$_$.k7 = print;
11206
+ _.$_$.l7 = arrayIterator;
11207
+ _.$_$.m7 = booleanArray;
11208
+ _.$_$.n7 = captureStack;
11209
+ _.$_$.o7 = charArrayOf;
11210
+ _.$_$.p7 = charArray;
11211
+ _.$_$.q7 = charSequenceGet;
11212
+ _.$_$.r7 = charSequenceLength;
11213
+ _.$_$.s7 = charSequenceSubSequence;
11214
+ _.$_$.t7 = classMeta;
11215
+ _.$_$.u7 = compareTo_0;
11216
+ _.$_$.v7 = equals_0;
11217
+ _.$_$.w7 = fillArrayVal;
11218
+ _.$_$.x7 = getBooleanHashCode;
11219
+ _.$_$.y7 = getNumberHashCode;
11220
+ _.$_$.z7 = getPropertyCallableRef;
11221
+ _.$_$.a8 = getStringHashCode;
11222
+ _.$_$.b8 = hashCode;
11223
+ _.$_$.c8 = interfaceMeta;
11224
+ _.$_$.d8 = isArray;
11225
+ _.$_$.e8 = isBooleanArray;
11226
+ _.$_$.f8 = isByteArray;
11227
+ _.$_$.g8 = isCharArray;
11228
+ _.$_$.h8 = isCharSequence;
11229
+ _.$_$.i8 = isDoubleArray;
11230
+ _.$_$.j8 = isFloatArray;
11231
+ _.$_$.k8 = isIntArray;
11232
+ _.$_$.l8 = isInterface;
11233
+ _.$_$.m8 = isLongArray;
11234
+ _.$_$.n8 = isShortArray;
11235
+ _.$_$.o8 = get_js;
11236
+ _.$_$.p8 = json;
11237
+ _.$_$.q8 = numberRangeToNumber;
11238
+ _.$_$.r8 = numberToChar;
11239
+ _.$_$.s8 = numberToDouble;
11240
+ _.$_$.t8 = numberToInt;
11241
+ _.$_$.u8 = numberToLong;
11242
+ _.$_$.v8 = objectCreate;
11243
+ _.$_$.w8 = objectMeta;
11244
+ _.$_$.x8 = protoOf;
11245
+ _.$_$.y8 = setMetadataFor;
11246
+ _.$_$.z8 = toLong;
11247
+ _.$_$.a9 = toString_1;
11248
+ _.$_$.b9 = roundToInt;
11249
+ _.$_$.c9 = withSign;
11250
+ _.$_$.d9 = IntRange;
11251
+ _.$_$.e9 = coerceAtLeast_1;
11252
+ _.$_$.f9 = coerceAtLeast;
11253
+ _.$_$.g9 = coerceAtLeast_0;
11254
+ _.$_$.h9 = coerceAtMost;
11255
+ _.$_$.i9 = coerceIn;
11256
+ _.$_$.j9 = coerceIn_0;
11257
+ _.$_$.k9 = until;
11258
+ _.$_$.l9 = KClass;
11259
+ _.$_$.m9 = KMutableProperty0;
11260
+ _.$_$.n9 = KMutableProperty1;
11261
+ _.$_$.o9 = KProperty0;
11262
+ _.$_$.p9 = KProperty1;
11263
+ _.$_$.q9 = KTypeParameter;
11264
+ _.$_$.r9 = filter;
11265
+ _.$_$.s9 = generateSequence_0;
11266
+ _.$_$.t9 = generateSequence;
11267
+ _.$_$.u9 = joinToString_1;
11268
+ _.$_$.v9 = mapNotNull;
11269
+ _.$_$.w9 = map;
11270
+ _.$_$.x9 = maxOrNull_0;
11271
+ _.$_$.y9 = toList_2;
11272
+ _.$_$.z9 = Regex;
11273
+ _.$_$.aa = chunked;
11274
+ _.$_$.ba = commonPrefixWith;
11275
+ _.$_$.ca = concatToString;
11276
+ _.$_$.da = contains_5;
11277
+ _.$_$.ea = contains_6;
11278
+ _.$_$.fa = drop_0;
11279
+ _.$_$.ga = endsWith;
11280
+ _.$_$.ha = equals;
11281
+ _.$_$.ia = firstOrNull_0;
11282
+ _.$_$.ja = first_1;
11283
+ _.$_$.ka = get;
11284
+ _.$_$.la = indexOf_6;
11285
+ _.$_$.ma = indexOf_5;
11286
+ _.$_$.na = isBlank;
11287
+ _.$_$.oa = isDigit;
11288
+ _.$_$.pa = isHighSurrogate;
11289
+ _.$_$.qa = isLowSurrogate;
11290
+ _.$_$.ra = isLowerCase;
11291
+ _.$_$.sa = isWhitespace;
11292
+ _.$_$.ta = get_lastIndex_2;
11293
+ _.$_$.ua = lastIndexOf;
11294
+ _.$_$.va = matches;
11295
+ _.$_$.wa = padStart;
11296
+ _.$_$.xa = prependIndent;
11297
+ _.$_$.ya = removePrefix;
11298
+ _.$_$.za = removeSuffix;
11299
+ _.$_$.ab = removeSurrounding;
11300
+ _.$_$.bb = repeat;
11301
+ _.$_$.cb = replace;
11302
+ _.$_$.db = replace_0;
11303
+ _.$_$.eb = slice_1;
11304
+ _.$_$.fb = split_1;
11305
+ _.$_$.gb = split;
11306
+ _.$_$.hb = startsWith;
11307
+ _.$_$.ib = startsWith_2;
11308
+ _.$_$.jb = startsWith_1;
11309
+ _.$_$.kb = substringBefore;
11310
+ _.$_$.lb = take_1;
11311
+ _.$_$.mb = titlecase;
11312
+ _.$_$.nb = toIntOrNull;
11313
+ _.$_$.ob = toInt_0;
11314
+ _.$_$.pb = toInt;
11315
+ _.$_$.qb = trimIndent;
11316
+ _.$_$.rb = trimMargin;
11317
+ _.$_$.sb = trimStart;
11318
+ _.$_$.tb = trim;
11319
+ _.$_$.ub = Duration;
11320
+ _.$_$.vb = ArithmeticException;
11321
+ _.$_$.wb = Char;
11322
+ _.$_$.xb = ClassCastException;
11323
+ _.$_$.yb = Comparable;
11324
+ _.$_$.zb = Comparator;
11325
+ _.$_$.ac = Enum;
11326
+ _.$_$.bc = Exception;
11327
+ _.$_$.cc = IllegalArgumentException;
11328
+ _.$_$.dc = IllegalStateException;
11329
+ _.$_$.ec = Long;
11330
+ _.$_$.fc = Pair;
11331
+ _.$_$.gc = Result;
11332
+ _.$_$.hc = RuntimeException;
11333
+ _.$_$.ic = THROW_CCE;
11334
+ _.$_$.jc = Triple;
11335
+ _.$_$.kc = UByteArray;
11336
+ _.$_$.lc = UByte;
11337
+ _.$_$.mc = UIntArray;
11338
+ _.$_$.nc = UInt;
11339
+ _.$_$.oc = ULongArray;
11340
+ _.$_$.pc = ULong;
11341
+ _.$_$.qc = UShortArray;
11342
+ _.$_$.rc = UShort;
11343
+ _.$_$.sc = Unit;
11344
+ _.$_$.tc = addSuppressed;
11345
+ _.$_$.uc = arrayOf;
11346
+ _.$_$.vc = createFailure;
11347
+ _.$_$.wc = ensureNotNull;
11348
+ _.$_$.xc = isFinite_0;
11349
+ _.$_$.yc = isFinite;
11350
+ _.$_$.zc = lazy;
11351
+ _.$_$.ad = lazy_0;
11352
+ _.$_$.bd = noWhenBranchMatchedException;
11353
+ _.$_$.cd = toString_0;
11354
+ _.$_$.dd = to;
11337
11355
  //endregion
11338
11356
  return _;
11339
11357
  }(module.exports));