@cubejs-client/vue3 1.2.32 → 1.2.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.
@@ -91,11 +91,11 @@
91
91
  };
92
92
  };
93
93
 
94
- var toString$4 = functionUncurryThis({}.toString);
95
- var stringSlice$6 = functionUncurryThis(''.slice);
94
+ var toString$3 = functionUncurryThis({}.toString);
95
+ var stringSlice$5 = functionUncurryThis(''.slice);
96
96
 
97
97
  var classofRaw = function (it) {
98
- return stringSlice$6(toString$4(it), 8, -1);
98
+ return stringSlice$5(toString$3(it), 8, -1);
99
99
  };
100
100
 
101
101
  var $Object$4 = Object;
@@ -274,11 +274,11 @@
274
274
  var isPure = false;
275
275
 
276
276
  // eslint-disable-next-line es/no-object-defineproperty -- safe
277
- var defineProperty$7 = Object.defineProperty;
277
+ var defineProperty$6 = Object.defineProperty;
278
278
 
279
279
  var defineGlobalProperty = function (key, value) {
280
280
  try {
281
- defineProperty$7(global$1, key, { value: value, configurable: true, writable: true });
281
+ defineProperty$6(global$1, key, { value: value, configurable: true, writable: true });
282
282
  } catch (error) {
283
283
  global$1[key] = value;
284
284
  } return value;
@@ -323,10 +323,10 @@
323
323
 
324
324
  var id = 0;
325
325
  var postfix = Math.random();
326
- var toString$3 = functionUncurryThis(1.0.toString);
326
+ var toString$2 = functionUncurryThis(1.0.toString);
327
327
 
328
328
  var uid = function (key) {
329
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$3(++id + postfix, 36);
329
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$2(++id + postfix, 36);
330
330
  };
331
331
 
332
332
  var Symbol$3 = global$1.Symbol;
@@ -499,10 +499,10 @@
499
499
 
500
500
  var weakMapBasicDetection = isCallable(WeakMap$1) && /native code/.test(String(WeakMap$1));
501
501
 
502
- var keys$3 = shared('keys');
502
+ var keys$1 = shared('keys');
503
503
 
504
504
  var sharedKey = function (key) {
505
- return keys$3[key] || (keys$3[key] = uid(key));
505
+ return keys$1[key] || (keys$1[key] = uid(key));
506
506
  };
507
507
 
508
508
  var hiddenKeys$1 = {};
@@ -900,7 +900,7 @@
900
900
 
901
901
  var $String$2 = String;
902
902
 
903
- var toString$2 = function (argument) {
903
+ var toString$1 = function (argument) {
904
904
  if (classof(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
905
905
  return $String$2(argument);
906
906
  };
@@ -1078,11 +1078,11 @@
1078
1078
 
1079
1079
  var path$1 = global$1;
1080
1080
 
1081
- var defineProperty$6 = objectDefineProperty.f;
1081
+ var defineProperty$5 = objectDefineProperty.f;
1082
1082
 
1083
1083
  var wellKnownSymbolDefine = function (NAME) {
1084
1084
  var Symbol = path$1.Symbol || (path$1.Symbol = {});
1085
- if (!hasOwnProperty_1(Symbol, NAME)) defineProperty$6(Symbol, NAME, {
1085
+ if (!hasOwnProperty_1(Symbol, NAME)) defineProperty$5(Symbol, NAME, {
1086
1086
  value: wellKnownSymbolWrapped.f(NAME)
1087
1087
  });
1088
1088
  };
@@ -1103,7 +1103,7 @@
1103
1103
  }
1104
1104
  };
1105
1105
 
1106
- var defineProperty$5 = objectDefineProperty.f;
1106
+ var defineProperty$4 = objectDefineProperty.f;
1107
1107
 
1108
1108
 
1109
1109
 
@@ -1112,7 +1112,7 @@
1112
1112
  var setToStringTag = function (target, TAG, STATIC) {
1113
1113
  if (target && !STATIC) target = target.prototype;
1114
1114
  if (target && !hasOwnProperty_1(target, TO_STRING_TAG)) {
1115
- defineProperty$5(target, TO_STRING_TAG, { configurable: true, value: TAG });
1115
+ defineProperty$4(target, TO_STRING_TAG, { configurable: true, value: TAG });
1116
1116
  }
1117
1117
  };
1118
1118
 
@@ -1144,7 +1144,7 @@
1144
1144
  var empty = [];
1145
1145
  var construct$1 = getBuiltIn('Reflect', 'construct');
1146
1146
  var constructorRegExp = /^\s*(?:class|function)\b/;
1147
- var exec$4 = functionUncurryThis(constructorRegExp.exec);
1147
+ var exec$3 = functionUncurryThis(constructorRegExp.exec);
1148
1148
  var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
1149
1149
 
1150
1150
  var isConstructorModern = function isConstructor(argument) {
@@ -1168,7 +1168,7 @@
1168
1168
  // we can't check .prototype since constructors produced by .bind haven't it
1169
1169
  // `Function#toString` throws on some built-it function in some legacy engines
1170
1170
  // (for example, `DOMQuad` and similar in FF41-)
1171
- return INCORRECT_TO_STRING || !!exec$4(constructorRegExp, inspectSource(argument));
1171
+ return INCORRECT_TO_STRING || !!exec$3(constructorRegExp, inspectSource(argument));
1172
1172
  } catch (error) {
1173
1173
  return true;
1174
1174
  }
@@ -1407,7 +1407,7 @@
1407
1407
  if (!symbolConstructorDetection) {
1408
1408
  $Symbol = function Symbol() {
1409
1409
  if (objectIsPrototypeOf(SymbolPrototype, this)) throw new TypeError$4('Symbol is not a constructor');
1410
- var description = !arguments.length || arguments[0] === undefined ? undefined : toString$2(arguments[0]);
1410
+ var description = !arguments.length || arguments[0] === undefined ? undefined : toString$1(arguments[0]);
1411
1411
  var tag = uid(description);
1412
1412
  var setter = function (value) {
1413
1413
  var $this = this === undefined ? global$1 : this;
@@ -1514,7 +1514,7 @@
1514
1514
  // https://tc39.es/ecma262/#sec-symbol.for
1515
1515
  _export({ target: 'Symbol', stat: true, forced: !symbolRegistryDetection }, {
1516
1516
  'for': function (key) {
1517
- var string = toString$2(key);
1517
+ var string = toString$1(key);
1518
1518
  if (hasOwnProperty_1(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];
1519
1519
  var symbol = getBuiltIn('Symbol')(string);
1520
1520
  StringToSymbolRegistry[string] = symbol;
@@ -1555,7 +1555,7 @@
1555
1555
  for (var i = 0; i < rawLength; i++) {
1556
1556
  var element = replacer[i];
1557
1557
  if (typeof element == 'string') push$5(keys, element);
1558
- else if (typeof element == 'number' || classofRaw(element) === 'Number' || classofRaw(element) === 'String') push$5(keys, toString$2(element));
1558
+ else if (typeof element == 'number' || classofRaw(element) === 'Number' || classofRaw(element) === 'String') push$5(keys, toString$1(element));
1559
1559
  }
1560
1560
  var keysLength = keys.length;
1561
1561
  var root = true;
@@ -1571,10 +1571,10 @@
1571
1571
 
1572
1572
  var $String$1 = String;
1573
1573
  var $stringify = getBuiltIn('JSON', 'stringify');
1574
- var exec$3 = functionUncurryThis(/./.exec);
1575
- var charAt$7 = functionUncurryThis(''.charAt);
1574
+ var exec$2 = functionUncurryThis(/./.exec);
1575
+ var charAt$6 = functionUncurryThis(''.charAt);
1576
1576
  var charCodeAt$2 = functionUncurryThis(''.charCodeAt);
1577
- var replace$4 = functionUncurryThis(''.replace);
1577
+ var replace$3 = functionUncurryThis(''.replace);
1578
1578
  var numberToString = functionUncurryThis(1.0.toString);
1579
1579
 
1580
1580
  var tester = /[\uD800-\uDFFF]/g;
@@ -1610,9 +1610,9 @@
1610
1610
  };
1611
1611
 
1612
1612
  var fixIllFormed = function (match, offset, string) {
1613
- var prev = charAt$7(string, offset - 1);
1614
- var next = charAt$7(string, offset + 1);
1615
- if ((exec$3(low, match) && !exec$3(hi, next)) || (exec$3(hi, match) && !exec$3(low, prev))) {
1613
+ var prev = charAt$6(string, offset - 1);
1614
+ var next = charAt$6(string, offset + 1);
1615
+ if ((exec$2(low, match) && !exec$2(hi, next)) || (exec$2(hi, match) && !exec$2(low, prev))) {
1616
1616
  return '\\u' + numberToString(charCodeAt$2(match, 0), 16);
1617
1617
  } return match;
1618
1618
  };
@@ -1625,7 +1625,7 @@
1625
1625
  stringify: function stringify(it, replacer, space) {
1626
1626
  var args = arraySlice(arguments);
1627
1627
  var result = functionApply(WRONG_SYMBOLS_CONVERSION ? stringifyWithSymbolsFix : $stringify, null, args);
1628
- return ILL_FORMED_UNICODE && typeof result == 'string' ? replace$4(result, tester, fixIllFormed) : result;
1628
+ return ILL_FORMED_UNICODE && typeof result == 'string' ? replace$3(result, tester, fixIllFormed) : result;
1629
1629
  }
1630
1630
  });
1631
1631
  }
@@ -1683,13 +1683,13 @@
1683
1683
  defineProperties: defineProperties
1684
1684
  });
1685
1685
 
1686
- var defineProperty$4 = objectDefineProperty.f;
1686
+ var defineProperty$3 = objectDefineProperty.f;
1687
1687
 
1688
1688
  // `Object.defineProperty` method
1689
1689
  // https://tc39.es/ecma262/#sec-object.defineproperty
1690
1690
  // eslint-disable-next-line es/no-object-defineproperty -- safe
1691
- _export({ target: 'Object', stat: true, forced: Object.defineProperty !== defineProperty$4, sham: !descriptors }, {
1692
- defineProperty: defineProperty$4
1691
+ _export({ target: 'Object', stat: true, forced: Object.defineProperty !== defineProperty$3, sham: !descriptors }, {
1692
+ defineProperty: defineProperty$3
1693
1693
  });
1694
1694
 
1695
1695
  var $Function = Function;
@@ -2329,7 +2329,7 @@
2329
2329
  // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
2330
2330
  var $RegExp$2 = global$1.RegExp;
2331
2331
 
2332
- var UNSUPPORTED_Y$3 = fails(function () {
2332
+ var UNSUPPORTED_Y$2 = fails(function () {
2333
2333
  var re = $RegExp$2('a', 'y');
2334
2334
  re.lastIndex = 2;
2335
2335
  return re.exec('abcd') !== null;
@@ -2337,11 +2337,11 @@
2337
2337
 
2338
2338
  // UC Browser bug
2339
2339
  // https://github.com/zloirock/core-js/issues/1008
2340
- var MISSED_STICKY$1 = UNSUPPORTED_Y$3 || fails(function () {
2340
+ var MISSED_STICKY = UNSUPPORTED_Y$2 || fails(function () {
2341
2341
  return !$RegExp$2('a', 'y').sticky;
2342
2342
  });
2343
2343
 
2344
- var BROKEN_CARET = UNSUPPORTED_Y$3 || fails(function () {
2344
+ var BROKEN_CARET = UNSUPPORTED_Y$2 || fails(function () {
2345
2345
  // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
2346
2346
  var re = $RegExp$2('^r', 'gy');
2347
2347
  re.lastIndex = 2;
@@ -2350,8 +2350,8 @@
2350
2350
 
2351
2351
  var regexpStickyHelpers = {
2352
2352
  BROKEN_CARET: BROKEN_CARET,
2353
- MISSED_STICKY: MISSED_STICKY$1,
2354
- UNSUPPORTED_Y: UNSUPPORTED_Y$3
2353
+ MISSED_STICKY: MISSED_STICKY,
2354
+ UNSUPPORTED_Y: UNSUPPORTED_Y$2
2355
2355
  };
2356
2356
 
2357
2357
  // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
@@ -2387,10 +2387,10 @@
2387
2387
  var nativeReplace = shared('native-string-replace', String.prototype.replace);
2388
2388
  var nativeExec = RegExp.prototype.exec;
2389
2389
  var patchedExec = nativeExec;
2390
- var charAt$6 = functionUncurryThis(''.charAt);
2390
+ var charAt$5 = functionUncurryThis(''.charAt);
2391
2391
  var indexOf = functionUncurryThis(''.indexOf);
2392
- var replace$3 = functionUncurryThis(''.replace);
2393
- var stringSlice$5 = functionUncurryThis(''.slice);
2392
+ var replace$2 = functionUncurryThis(''.replace);
2393
+ var stringSlice$4 = functionUncurryThis(''.slice);
2394
2394
 
2395
2395
  var UPDATES_LAST_INDEX_WRONG = (function () {
2396
2396
  var re1 = /a/;
@@ -2400,18 +2400,18 @@
2400
2400
  return re1.lastIndex !== 0 || re2.lastIndex !== 0;
2401
2401
  })();
2402
2402
 
2403
- var UNSUPPORTED_Y$2 = regexpStickyHelpers.BROKEN_CARET;
2403
+ var UNSUPPORTED_Y$1 = regexpStickyHelpers.BROKEN_CARET;
2404
2404
 
2405
2405
  // nonparticipating capturing group, copied from es5-shim's String#split patch.
2406
2406
  var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
2407
2407
 
2408
- var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y$2 || regexpUnsupportedDotAll || regexpUnsupportedNcg;
2408
+ var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y$1 || regexpUnsupportedDotAll || regexpUnsupportedNcg;
2409
2409
 
2410
2410
  if (PATCH) {
2411
2411
  patchedExec = function exec(string) {
2412
2412
  var re = this;
2413
2413
  var state = getInternalState$2(re);
2414
- var str = toString$2(string);
2414
+ var str = toString$1(string);
2415
2415
  var raw = state.raw;
2416
2416
  var result, reCopy, lastIndex, match, i, object, group;
2417
2417
 
@@ -2423,21 +2423,21 @@
2423
2423
  }
2424
2424
 
2425
2425
  var groups = state.groups;
2426
- var sticky = UNSUPPORTED_Y$2 && re.sticky;
2426
+ var sticky = UNSUPPORTED_Y$1 && re.sticky;
2427
2427
  var flags = functionCall(regexpFlags, re);
2428
2428
  var source = re.source;
2429
2429
  var charsAdded = 0;
2430
2430
  var strCopy = str;
2431
2431
 
2432
2432
  if (sticky) {
2433
- flags = replace$3(flags, 'y', '');
2433
+ flags = replace$2(flags, 'y', '');
2434
2434
  if (indexOf(flags, 'g') === -1) {
2435
2435
  flags += 'g';
2436
2436
  }
2437
2437
 
2438
- strCopy = stringSlice$5(str, re.lastIndex);
2438
+ strCopy = stringSlice$4(str, re.lastIndex);
2439
2439
  // Support anchored sticky behavior.
2440
- if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt$6(str, re.lastIndex - 1) !== '\n')) {
2440
+ if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt$5(str, re.lastIndex - 1) !== '\n')) {
2441
2441
  source = '(?: ' + source + ')';
2442
2442
  strCopy = ' ' + strCopy;
2443
2443
  charsAdded++;
@@ -2456,8 +2456,8 @@
2456
2456
 
2457
2457
  if (sticky) {
2458
2458
  if (match) {
2459
- match.input = stringSlice$5(match.input, charsAdded);
2460
- match[0] = stringSlice$5(match[0], charsAdded);
2459
+ match.input = stringSlice$4(match.input, charsAdded);
2460
+ match[0] = stringSlice$4(match[0], charsAdded);
2461
2461
  match.index = re.lastIndex;
2462
2462
  re.lastIndex += match[0].length;
2463
2463
  } else re.lastIndex = 0;
@@ -2504,7 +2504,7 @@
2504
2504
 
2505
2505
 
2506
2506
  var SPECIES$4 = wellKnownSymbol('species');
2507
- var RegExpPrototype$3 = RegExp.prototype;
2507
+ var RegExpPrototype$2 = RegExp.prototype;
2508
2508
 
2509
2509
  var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
2510
2510
  var SYMBOL = wellKnownSymbol(KEY);
@@ -2552,7 +2552,7 @@
2552
2552
  var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
2553
2553
  var uncurriedNativeMethod = functionUncurryThisClause(nativeMethod);
2554
2554
  var $exec = regexp.exec;
2555
- if ($exec === regexpExec || $exec === RegExpPrototype$3.exec) {
2555
+ if ($exec === regexpExec || $exec === RegExpPrototype$2.exec) {
2556
2556
  if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
2557
2557
  // The native String method already delegates to @@method (this
2558
2558
  // polyfilled function), leasing to infinite recursion.
@@ -2565,19 +2565,19 @@
2565
2565
  });
2566
2566
 
2567
2567
  defineBuiltIn(String.prototype, KEY, methods[0]);
2568
- defineBuiltIn(RegExpPrototype$3, SYMBOL, methods[1]);
2568
+ defineBuiltIn(RegExpPrototype$2, SYMBOL, methods[1]);
2569
2569
  }
2570
2570
 
2571
- if (SHAM) createNonEnumerableProperty(RegExpPrototype$3[SYMBOL], 'sham', true);
2571
+ if (SHAM) createNonEnumerableProperty(RegExpPrototype$2[SYMBOL], 'sham', true);
2572
2572
  };
2573
2573
 
2574
- var MATCH$2 = wellKnownSymbol('match');
2574
+ var MATCH$1 = wellKnownSymbol('match');
2575
2575
 
2576
2576
  // `IsRegExp` abstract operation
2577
2577
  // https://tc39.es/ecma262/#sec-isregexp
2578
2578
  var isRegexp = function (it) {
2579
2579
  var isRegExp;
2580
- return isObject(it) && ((isRegExp = it[MATCH$2]) !== undefined ? !!isRegExp : classofRaw(it) === 'RegExp');
2580
+ return isObject(it) && ((isRegExp = it[MATCH$1]) !== undefined ? !!isRegExp : classofRaw(it) === 'RegExp');
2581
2581
  };
2582
2582
 
2583
2583
  var SPECIES$3 = wellKnownSymbol('species');
@@ -2590,13 +2590,13 @@
2590
2590
  return C === undefined || isNullOrUndefined(S = anObject(C)[SPECIES$3]) ? defaultConstructor : aConstructor(S);
2591
2591
  };
2592
2592
 
2593
- var charAt$5 = functionUncurryThis(''.charAt);
2593
+ var charAt$4 = functionUncurryThis(''.charAt);
2594
2594
  var charCodeAt$1 = functionUncurryThis(''.charCodeAt);
2595
- var stringSlice$4 = functionUncurryThis(''.slice);
2595
+ var stringSlice$3 = functionUncurryThis(''.slice);
2596
2596
 
2597
2597
  var createMethod$3 = function (CONVERT_TO_STRING) {
2598
2598
  return function ($this, pos) {
2599
- var S = toString$2(requireObjectCoercible($this));
2599
+ var S = toString$1(requireObjectCoercible($this));
2600
2600
  var position = toIntegerOrInfinity(pos);
2601
2601
  var size = S.length;
2602
2602
  var first, second;
@@ -2605,10 +2605,10 @@
2605
2605
  return first < 0xD800 || first > 0xDBFF || position + 1 === size
2606
2606
  || (second = charCodeAt$1(S, position + 1)) < 0xDC00 || second > 0xDFFF
2607
2607
  ? CONVERT_TO_STRING
2608
- ? charAt$5(S, position)
2608
+ ? charAt$4(S, position)
2609
2609
  : first
2610
2610
  : CONVERT_TO_STRING
2611
- ? stringSlice$4(S, position, position + 2)
2611
+ ? stringSlice$3(S, position, position + 2)
2612
2612
  : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
2613
2613
  };
2614
2614
  };
@@ -2622,12 +2622,12 @@
2622
2622
  charAt: createMethod$3(true)
2623
2623
  };
2624
2624
 
2625
- var charAt$4 = stringMultibyte.charAt;
2625
+ var charAt$3 = stringMultibyte.charAt;
2626
2626
 
2627
2627
  // `AdvanceStringIndex` abstract operation
2628
2628
  // https://tc39.es/ecma262/#sec-advancestringindex
2629
2629
  var advanceStringIndex = function (S, index, unicode) {
2630
- return index + (unicode ? charAt$4(S, index).length : 1);
2630
+ return index + (unicode ? charAt$3(S, index).length : 1);
2631
2631
  };
2632
2632
 
2633
2633
  var $TypeError$b = TypeError;
@@ -2645,13 +2645,13 @@
2645
2645
  throw new $TypeError$b('RegExp#exec called on incompatible receiver');
2646
2646
  };
2647
2647
 
2648
- var UNSUPPORTED_Y$1 = regexpStickyHelpers.UNSUPPORTED_Y;
2648
+ var UNSUPPORTED_Y = regexpStickyHelpers.UNSUPPORTED_Y;
2649
2649
  var MAX_UINT32 = 0xFFFFFFFF;
2650
2650
  var min$2 = Math.min;
2651
2651
  var $push = [].push;
2652
- var exec$2 = functionUncurryThis(/./.exec);
2652
+ var exec$1 = functionUncurryThis(/./.exec);
2653
2653
  var push$3 = functionUncurryThis($push);
2654
- var stringSlice$3 = functionUncurryThis(''.slice);
2654
+ var stringSlice$2 = functionUncurryThis(''.slice);
2655
2655
 
2656
2656
  // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
2657
2657
  // Weex JS has frozen built-in prototypes, so use try / catch wrapper
@@ -2679,7 +2679,7 @@
2679
2679
  ) {
2680
2680
  // based on es5-shim implementation, need to rework it
2681
2681
  internalSplit = function (separator, limit) {
2682
- var string = toString$2(requireObjectCoercible(this));
2682
+ var string = toString$1(requireObjectCoercible(this));
2683
2683
  var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
2684
2684
  if (lim === 0) return [];
2685
2685
  if (separator === undefined) return [string];
@@ -2699,7 +2699,7 @@
2699
2699
  while (match = functionCall(regexpExec, separatorCopy, string)) {
2700
2700
  lastIndex = separatorCopy.lastIndex;
2701
2701
  if (lastIndex > lastLastIndex) {
2702
- push$3(output, stringSlice$3(string, lastLastIndex, match.index));
2702
+ push$3(output, stringSlice$2(string, lastLastIndex, match.index));
2703
2703
  if (match.length > 1 && match.index < string.length) functionApply($push, output, arraySliceSimple(match, 1));
2704
2704
  lastLength = match[0].length;
2705
2705
  lastLastIndex = lastIndex;
@@ -2708,8 +2708,8 @@
2708
2708
  if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop
2709
2709
  }
2710
2710
  if (lastLastIndex === string.length) {
2711
- if (lastLength || !exec$2(separatorCopy, '')) push$3(output, '');
2712
- } else push$3(output, stringSlice$3(string, lastLastIndex));
2711
+ if (lastLength || !exec$1(separatorCopy, '')) push$3(output, '');
2712
+ } else push$3(output, stringSlice$2(string, lastLastIndex));
2713
2713
  return output.length > lim ? arraySliceSimple(output, 0, lim) : output;
2714
2714
  };
2715
2715
  // Chakra, V8
@@ -2727,7 +2727,7 @@
2727
2727
  var splitter = isNullOrUndefined(separator) ? undefined : getMethod(separator, SPLIT);
2728
2728
  return splitter
2729
2729
  ? functionCall(splitter, separator, O, limit)
2730
- : functionCall(internalSplit, toString$2(O), separator, limit);
2730
+ : functionCall(internalSplit, toString$1(O), separator, limit);
2731
2731
  },
2732
2732
  // `RegExp.prototype[@@split]` method
2733
2733
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@split
@@ -2736,7 +2736,7 @@
2736
2736
  // the 'y' flag.
2737
2737
  function (string, limit) {
2738
2738
  var rx = anObject(this);
2739
- var S = toString$2(string);
2739
+ var S = toString$1(string);
2740
2740
  var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit);
2741
2741
 
2742
2742
  if (res.done) return res.value;
@@ -2747,11 +2747,11 @@
2747
2747
  var flags = (rx.ignoreCase ? 'i' : '') +
2748
2748
  (rx.multiline ? 'm' : '') +
2749
2749
  (rx.unicode ? 'u' : '') +
2750
- (UNSUPPORTED_Y$1 ? 'g' : 'y');
2750
+ (UNSUPPORTED_Y ? 'g' : 'y');
2751
2751
 
2752
2752
  // ^(? + rx + ) is needed, in combination with some S slicing, to
2753
2753
  // simulate the 'y' flag.
2754
- var splitter = new C(UNSUPPORTED_Y$1 ? '^(?:' + rx.source + ')' : rx, flags);
2754
+ var splitter = new C(UNSUPPORTED_Y ? '^(?:' + rx.source + ')' : rx, flags);
2755
2755
  var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
2756
2756
  if (lim === 0) return [];
2757
2757
  if (S.length === 0) return regexpExecAbstract(splitter, S) === null ? [S] : [];
@@ -2759,16 +2759,16 @@
2759
2759
  var q = 0;
2760
2760
  var A = [];
2761
2761
  while (q < S.length) {
2762
- splitter.lastIndex = UNSUPPORTED_Y$1 ? 0 : q;
2763
- var z = regexpExecAbstract(splitter, UNSUPPORTED_Y$1 ? stringSlice$3(S, q) : S);
2762
+ splitter.lastIndex = UNSUPPORTED_Y ? 0 : q;
2763
+ var z = regexpExecAbstract(splitter, UNSUPPORTED_Y ? stringSlice$2(S, q) : S);
2764
2764
  var e;
2765
2765
  if (
2766
2766
  z === null ||
2767
- (e = min$2(toLength(splitter.lastIndex + (UNSUPPORTED_Y$1 ? q : 0)), S.length)) === p
2767
+ (e = min$2(toLength(splitter.lastIndex + (UNSUPPORTED_Y ? q : 0)), S.length)) === p
2768
2768
  ) {
2769
2769
  q = advanceStringIndex(S, q, unicodeMatching);
2770
2770
  } else {
2771
- push$3(A, stringSlice$3(S, p, q));
2771
+ push$3(A, stringSlice$2(S, p, q));
2772
2772
  if (A.length === lim) return A;
2773
2773
  for (var i = 1; i <= z.length - 1; i++) {
2774
2774
  push$3(A, z[i]);
@@ -2777,26 +2777,26 @@
2777
2777
  q = p = e;
2778
2778
  }
2779
2779
  }
2780
- push$3(A, stringSlice$3(S, p));
2780
+ push$3(A, stringSlice$2(S, p));
2781
2781
  return A;
2782
2782
  }
2783
2783
  ];
2784
- }, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y$1);
2784
+ }, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
2785
2785
 
2786
2786
  // a string of all valid unicode whitespaces
2787
2787
  var whitespaces = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
2788
2788
  '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
2789
2789
 
2790
- var replace$2 = functionUncurryThis(''.replace);
2790
+ var replace$1 = functionUncurryThis(''.replace);
2791
2791
  var ltrim = RegExp('^[' + whitespaces + ']+');
2792
2792
  var rtrim = RegExp('(^|[^' + whitespaces + '])[' + whitespaces + ']+$');
2793
2793
 
2794
2794
  // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
2795
2795
  var createMethod$2 = function (TYPE) {
2796
2796
  return function ($this) {
2797
- var string = toString$2(requireObjectCoercible($this));
2798
- if (TYPE & 1) string = replace$2(string, ltrim, '');
2799
- if (TYPE & 2) string = replace$2(string, rtrim, '$1');
2797
+ var string = toString$1(requireObjectCoercible($this));
2798
+ if (TYPE & 1) string = replace$1(string, ltrim, '');
2799
+ if (TYPE & 2) string = replace$1(string, rtrim, '$1');
2800
2800
  return string;
2801
2801
  };
2802
2802
  };
@@ -2820,7 +2820,7 @@
2820
2820
  var Symbol$2 = global$1.Symbol;
2821
2821
  var ITERATOR$9 = Symbol$2 && Symbol$2.iterator;
2822
2822
  var hex = /^[+-]?0x/i;
2823
- var exec$1 = functionUncurryThis(hex.exec);
2823
+ var exec = functionUncurryThis(hex.exec);
2824
2824
  var FORCED$7 = $parseInt(whitespaces + '08') !== 8 || $parseInt(whitespaces + '0x16') !== 22
2825
2825
  // MS Edge 18- broken with boxed symbols
2826
2826
  || (ITERATOR$9 && !fails(function () { $parseInt(Object(ITERATOR$9)); }));
@@ -2828,8 +2828,8 @@
2828
2828
  // `parseInt` method
2829
2829
  // https://tc39.es/ecma262/#sec-parseint-string-radix
2830
2830
  var numberParseInt = FORCED$7 ? function parseInt(string, radix) {
2831
- var S = trim$2(toString$2(string));
2832
- return $parseInt(S, (radix >>> 0) || (exec$1(hex, S) ? 16 : 10));
2831
+ var S = trim$2(toString$1(string));
2832
+ return $parseInt(S, (radix >>> 0) || (exec(hex, S) ? 16 : 10));
2833
2833
  } : $parseInt;
2834
2834
 
2835
2835
  // `parseInt` method
@@ -2846,7 +2846,7 @@
2846
2846
  } return it;
2847
2847
  };
2848
2848
 
2849
- var MATCH$1 = wellKnownSymbol('match');
2849
+ var MATCH = wellKnownSymbol('match');
2850
2850
 
2851
2851
  var correctIsRegexpLogic = function (METHOD_NAME) {
2852
2852
  var regexp = /./;
@@ -2854,7 +2854,7 @@
2854
2854
  '/./'[METHOD_NAME](regexp);
2855
2855
  } catch (error1) {
2856
2856
  try {
2857
- regexp[MATCH$1] = false;
2857
+ regexp[MATCH] = false;
2858
2858
  return '/./'[METHOD_NAME](regexp);
2859
2859
  } catch (error2) { /* empty */ }
2860
2860
  } return false;
@@ -2884,12 +2884,12 @@
2884
2884
  // https://tc39.es/ecma262/#sec-string.prototype.endswith
2885
2885
  _export({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, {
2886
2886
  endsWith: function endsWith(searchString /* , endPosition = @length */) {
2887
- var that = toString$2(requireObjectCoercible(this));
2887
+ var that = toString$1(requireObjectCoercible(this));
2888
2888
  notARegexp(searchString);
2889
2889
  var endPosition = arguments.length > 1 ? arguments[1] : undefined;
2890
2890
  var len = that.length;
2891
2891
  var end = endPosition === undefined ? len : min$1(toLength(endPosition), len);
2892
- var search = toString$2(searchString);
2892
+ var search = toString$1(searchString);
2893
2893
  return nativeEndsWith
2894
2894
  ? nativeEndsWith(that, search, end)
2895
2895
  : slice$1(that, end - search.length, end) === search;
@@ -3146,7 +3146,7 @@
3146
3146
  }
3147
3147
  });
3148
3148
 
3149
- var defineProperty$3 = objectDefineProperty.f;
3149
+ var defineProperty$2 = objectDefineProperty.f;
3150
3150
 
3151
3151
  var UNSCOPABLES = wellKnownSymbol('unscopables');
3152
3152
  var ArrayPrototype$1 = Array.prototype;
@@ -3154,7 +3154,7 @@
3154
3154
  // Array.prototype[@@unscopables]
3155
3155
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
3156
3156
  if (ArrayPrototype$1[UNSCOPABLES] === undefined) {
3157
- defineProperty$3(ArrayPrototype$1, UNSCOPABLES, {
3157
+ defineProperty$2(ArrayPrototype$1, UNSCOPABLES, {
3158
3158
  configurable: true,
3159
3159
  value: objectCreate(null)
3160
3160
  });
@@ -3624,7 +3624,7 @@
3624
3624
  return { value: value, done: done };
3625
3625
  };
3626
3626
 
3627
- var defineProperty$2 = objectDefineProperty.f;
3627
+ var defineProperty$1 = objectDefineProperty.f;
3628
3628
 
3629
3629
 
3630
3630
 
@@ -3679,7 +3679,7 @@
3679
3679
 
3680
3680
  // V8 ~ Chrome 45- bug
3681
3681
  if (descriptors && values.name !== 'values') try {
3682
- defineProperty$2(values, 'name', { value: 'values' });
3682
+ defineProperty$1(values, 'name', { value: 'values' });
3683
3683
  } catch (error) { /* empty */ }
3684
3684
 
3685
3685
  // FF26- bug: ArrayBuffers are non-extensible, but Object.isExtensible does not report it
@@ -4275,7 +4275,7 @@
4275
4275
  return function Set() { return init(this, arguments.length ? arguments[0] : undefined); };
4276
4276
  }, collectionStrong);
4277
4277
 
4278
- var charAt$3 = stringMultibyte.charAt;
4278
+ var charAt$2 = stringMultibyte.charAt;
4279
4279
 
4280
4280
 
4281
4281
 
@@ -4290,7 +4290,7 @@
4290
4290
  iteratorDefine(String, 'String', function (iterated) {
4291
4291
  setInternalState$2(this, {
4292
4292
  type: STRING_ITERATOR,
4293
- string: toString$2(iterated),
4293
+ string: toString$1(iterated),
4294
4294
  index: 0
4295
4295
  });
4296
4296
  // `%StringIteratorPrototype%.next` method
@@ -4301,7 +4301,7 @@
4301
4301
  var index = state.index;
4302
4302
  var point;
4303
4303
  if (index >= string.length) return createIterResultObject(undefined, true);
4304
- point = charAt$3(string, index);
4304
+ point = charAt$2(string, index);
4305
4305
  state.index += point.length;
4306
4306
  return createIterResultObject(point, false);
4307
4307
  });
@@ -4396,15 +4396,15 @@
4396
4396
  from: arrayFrom
4397
4397
  });
4398
4398
 
4399
- var stringIndexOf$1 = functionUncurryThis(''.indexOf);
4399
+ var stringIndexOf = functionUncurryThis(''.indexOf);
4400
4400
 
4401
4401
  // `String.prototype.includes` method
4402
4402
  // https://tc39.es/ecma262/#sec-string.prototype.includes
4403
4403
  _export({ target: 'String', proto: true, forced: !correctIsRegexpLogic('includes') }, {
4404
4404
  includes: function includes(searchString /* , position = 0 */) {
4405
- return !!~stringIndexOf$1(
4406
- toString$2(requireObjectCoercible(this)),
4407
- toString$2(notARegexp(searchString)),
4405
+ return !!~stringIndexOf(
4406
+ toString$1(requireObjectCoercible(this)),
4407
+ toString$1(notARegexp(searchString)),
4408
4408
  arguments.length > 1 ? arguments[1] : undefined
4409
4409
  );
4410
4410
  }
@@ -4453,11 +4453,11 @@
4453
4453
  });
4454
4454
  }
4455
4455
 
4456
- var RegExpPrototype$2 = RegExp.prototype;
4456
+ var RegExpPrototype$1 = RegExp.prototype;
4457
4457
 
4458
4458
  var regexpGetFlags = function (R) {
4459
4459
  var flags = R.flags;
4460
- return flags === undefined && !('flags' in RegExpPrototype$2) && !hasOwnProperty_1(R, 'flags') && objectIsPrototypeOf(RegExpPrototype$2, R)
4460
+ return flags === undefined && !('flags' in RegExpPrototype$1) && !hasOwnProperty_1(R, 'flags') && objectIsPrototypeOf(RegExpPrototype$1, R)
4461
4461
  ? functionCall(regexpFlags, R) : flags;
4462
4462
  };
4463
4463
 
@@ -4469,8 +4469,8 @@
4469
4469
 
4470
4470
 
4471
4471
  var TO_STRING = 'toString';
4472
- var RegExpPrototype$1 = RegExp.prototype;
4473
- var nativeToString = RegExpPrototype$1[TO_STRING];
4472
+ var RegExpPrototype = RegExp.prototype;
4473
+ var nativeToString = RegExpPrototype[TO_STRING];
4474
4474
 
4475
4475
  var NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) !== '/a/b'; });
4476
4476
  // FF44- RegExp#toString has a wrong name
@@ -4481,8 +4481,8 @@
4481
4481
  if (NOT_GENERIC || INCORRECT_NAME) {
4482
4482
  defineBuiltIn(RegExp.prototype, TO_STRING, function toString() {
4483
4483
  var R = anObject(this);
4484
- var pattern = toString$2(R.source);
4485
- var flags = toString$2(regexpGetFlags(R));
4484
+ var pattern = toString$1(R.source);
4485
+ var flags = toString$1(regexpGetFlags(R));
4486
4486
  return '/' + pattern + '/' + flags;
4487
4487
  }, { unsafe: true });
4488
4488
  }
@@ -4495,13 +4495,13 @@
4495
4495
  function match(regexp) {
4496
4496
  var O = requireObjectCoercible(this);
4497
4497
  var matcher = isNullOrUndefined(regexp) ? undefined : getMethod(regexp, MATCH);
4498
- return matcher ? functionCall(matcher, regexp, O) : new RegExp(regexp)[MATCH](toString$2(O));
4498
+ return matcher ? functionCall(matcher, regexp, O) : new RegExp(regexp)[MATCH](toString$1(O));
4499
4499
  },
4500
4500
  // `RegExp.prototype[@@match]` method
4501
4501
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@match
4502
4502
  function (string) {
4503
4503
  var rx = anObject(this);
4504
- var S = toString$2(string);
4504
+ var S = toString$1(string);
4505
4505
  var res = maybeCallNative(nativeMatch, rx, S);
4506
4506
 
4507
4507
  if (res.done) return res.value;
@@ -4514,7 +4514,7 @@
4514
4514
  var n = 0;
4515
4515
  var result;
4516
4516
  while ((result = regexpExecAbstract(rx, S)) !== null) {
4517
- var matchStr = toString$2(result[0]);
4517
+ var matchStr = toString$1(result[0]);
4518
4518
  A[n] = matchStr;
4519
4519
  if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
4520
4520
  n++;
@@ -4537,9 +4537,9 @@
4537
4537
  // https://tc39.es/ecma262/#sec-thisnumbervalue
4538
4538
  var thisNumberValue = functionUncurryThis(1.0.valueOf);
4539
4539
 
4540
- var getOwnPropertyNames$1 = objectGetOwnPropertyNames.f;
4540
+ var getOwnPropertyNames = objectGetOwnPropertyNames.f;
4541
4541
  var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f;
4542
- var defineProperty$1 = objectDefineProperty.f;
4542
+ var defineProperty = objectDefineProperty.f;
4543
4543
 
4544
4544
  var trim$1 = stringTrim.trim;
4545
4545
 
@@ -4548,7 +4548,7 @@
4548
4548
  path$1[NUMBER];
4549
4549
  var NumberPrototype = NativeNumber.prototype;
4550
4550
  var TypeError$3 = global$1.TypeError;
4551
- var stringSlice$2 = functionUncurryThis(''.slice);
4551
+ var stringSlice$1 = functionUncurryThis(''.slice);
4552
4552
  var charCodeAt = functionUncurryThis(''.charCodeAt);
4553
4553
 
4554
4554
  // `ToNumeric` abstract operation
@@ -4587,7 +4587,7 @@
4587
4587
  default:
4588
4588
  return +it;
4589
4589
  }
4590
- digits = stringSlice$2(it, 2);
4590
+ digits = stringSlice$1(it, 2);
4591
4591
  length = digits.length;
4592
4592
  for (index = 0; index < length; index++) {
4593
4593
  code = charCodeAt(digits, index);
@@ -4622,7 +4622,7 @@
4622
4622
 
4623
4623
  // Use `internal/copy-constructor-properties` helper in `core-js@4`
4624
4624
  var copyConstructorProperties = function (target, source) {
4625
- for (var keys = descriptors ? getOwnPropertyNames$1(source) : (
4625
+ for (var keys = descriptors ? getOwnPropertyNames(source) : (
4626
4626
  // ES3:
4627
4627
  'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
4628
4628
  // ES2015 (in case, if modules with ES2015 Number statics required before):
@@ -4631,7 +4631,7 @@
4631
4631
  'fromString,range'
4632
4632
  ).split(','), j = 0, key; keys.length > j; j++) {
4633
4633
  if (hasOwnProperty_1(source, key = keys[j]) && !hasOwnProperty_1(target, key)) {
4634
- defineProperty$1(target, key, getOwnPropertyDescriptor$2(source, key));
4634
+ defineProperty(target, key, getOwnPropertyDescriptor$2(source, key));
4635
4635
  }
4636
4636
  }
4637
4637
  };
@@ -4640,7 +4640,7 @@
4640
4640
  var trim = stringTrim.trim;
4641
4641
 
4642
4642
 
4643
- var charAt$2 = functionUncurryThis(''.charAt);
4643
+ var charAt$1 = functionUncurryThis(''.charAt);
4644
4644
  var $parseFloat = global$1.parseFloat;
4645
4645
  var Symbol$1 = global$1.Symbol;
4646
4646
  var ITERATOR$2 = Symbol$1 && Symbol$1.iterator;
@@ -4651,9 +4651,9 @@
4651
4651
  // `parseFloat` method
4652
4652
  // https://tc39.es/ecma262/#sec-parsefloat-string
4653
4653
  var numberParseFloat = FORCED$1 ? function parseFloat(string) {
4654
- var trimmedString = trim(toString$2(string));
4654
+ var trimmedString = trim(toString$1(string));
4655
4655
  var result = $parseFloat(trimmedString);
4656
- return result === 0 && charAt$2(trimmedString, 0) === '-' ? -0 : result;
4656
+ return result === 0 && charAt$1(trimmedString, 0) === '-' ? -0 : result;
4657
4657
  } : $parseFloat;
4658
4658
 
4659
4659
  // `Number.parseFloat` method
@@ -4825,7 +4825,7 @@
4825
4825
  if (y === undefined) return -1;
4826
4826
  if (x === undefined) return 1;
4827
4827
  if (comparefn !== undefined) return +comparefn(x, y) || 0;
4828
- return toString$2(x) > toString$2(y) ? 1 : -1;
4828
+ return toString$1(x) > toString$1(y) ? 1 : -1;
4829
4829
  };
4830
4830
  };
4831
4831
 
@@ -4959,14 +4959,14 @@
4959
4959
  var TypeError$2 = global$1.TypeError;
4960
4960
  var decodeURIComponent$1 = global$1.decodeURIComponent;
4961
4961
  var encodeURIComponent$1 = global$1.encodeURIComponent;
4962
- var charAt$1 = functionUncurryThis(''.charAt);
4962
+ var charAt = functionUncurryThis(''.charAt);
4963
4963
  var join = functionUncurryThis([].join);
4964
4964
  var push = functionUncurryThis([].push);
4965
- var replace$1 = functionUncurryThis(''.replace);
4965
+ var replace = functionUncurryThis(''.replace);
4966
4966
  var shift = functionUncurryThis([].shift);
4967
4967
  var splice = functionUncurryThis([].splice);
4968
4968
  var split = functionUncurryThis(''.split);
4969
- var stringSlice$1 = functionUncurryThis(''.slice);
4969
+ var stringSlice = functionUncurryThis(''.slice);
4970
4970
 
4971
4971
  var plus = /\+/g;
4972
4972
  var sequences = Array(4);
@@ -4984,13 +4984,13 @@
4984
4984
  };
4985
4985
 
4986
4986
  var deserialize = function (it) {
4987
- var result = replace$1(it, plus, ' ');
4987
+ var result = replace(it, plus, ' ');
4988
4988
  var bytes = 4;
4989
4989
  try {
4990
4990
  return decodeURIComponent$1(result);
4991
4991
  } catch (error) {
4992
4992
  while (bytes) {
4993
- result = replace$1(result, percentSequence(bytes--), percentDecode);
4993
+ result = replace(result, percentSequence(bytes--), percentDecode);
4994
4994
  }
4995
4995
  return result;
4996
4996
  }
@@ -5012,7 +5012,7 @@
5012
5012
  };
5013
5013
 
5014
5014
  var serialize = function (it) {
5015
- return replace$1(encodeURIComponent$1(it), find, replacer);
5015
+ return replace(encodeURIComponent$1(it), find, replacer);
5016
5016
  };
5017
5017
 
5018
5018
  var URLSearchParamsIterator = iteratorCreateConstructor(function Iterator(params, kind) {
@@ -5043,7 +5043,7 @@
5043
5043
 
5044
5044
  if (init !== undefined) {
5045
5045
  if (isObject(init)) this.parseObject(init);
5046
- else this.parseQuery(typeof init == 'string' ? charAt$1(init, 0) === '?' ? stringSlice$1(init, 1) : init : toString$2(init));
5046
+ else this.parseQuery(typeof init == 'string' ? charAt(init, 0) === '?' ? stringSlice(init, 1) : init : toString$1(init));
5047
5047
  }
5048
5048
  };
5049
5049
 
@@ -5069,10 +5069,10 @@
5069
5069
  (second = functionCall(entryNext, entryIterator)).done ||
5070
5070
  !functionCall(entryNext, entryIterator).done
5071
5071
  ) throw new TypeError$2('Expected sequence with length 2');
5072
- push(entries, { key: toString$2(first.value), value: toString$2(second.value) });
5072
+ push(entries, { key: toString$1(first.value), value: toString$1(second.value) });
5073
5073
  }
5074
5074
  } else for (var key in object) if (hasOwnProperty_1(object, key)) {
5075
- push(entries, { key: key, value: toString$2(object[key]) });
5075
+ push(entries, { key: key, value: toString$1(object[key]) });
5076
5076
  }
5077
5077
  },
5078
5078
  parseQuery: function (query) {
@@ -5129,7 +5129,7 @@
5129
5129
  append: function append(name, value) {
5130
5130
  var state = getInternalParamsState(this);
5131
5131
  validateArgumentsLength(arguments.length, 2);
5132
- push(state.entries, { key: toString$2(name), value: toString$2(value) });
5132
+ push(state.entries, { key: toString$1(name), value: toString$1(value) });
5133
5133
  if (!descriptors) this.length++;
5134
5134
  state.updateURL();
5135
5135
  },
@@ -5139,9 +5139,9 @@
5139
5139
  var state = getInternalParamsState(this);
5140
5140
  var length = validateArgumentsLength(arguments.length, 1);
5141
5141
  var entries = state.entries;
5142
- var key = toString$2(name);
5142
+ var key = toString$1(name);
5143
5143
  var $value = length < 2 ? undefined : arguments[1];
5144
- var value = $value === undefined ? $value : toString$2($value);
5144
+ var value = $value === undefined ? $value : toString$1($value);
5145
5145
  var index = 0;
5146
5146
  while (index < entries.length) {
5147
5147
  var entry = entries[index];
@@ -5158,7 +5158,7 @@
5158
5158
  get: function get(name) {
5159
5159
  var entries = getInternalParamsState(this).entries;
5160
5160
  validateArgumentsLength(arguments.length, 1);
5161
- var key = toString$2(name);
5161
+ var key = toString$1(name);
5162
5162
  var index = 0;
5163
5163
  for (; index < entries.length; index++) {
5164
5164
  if (entries[index].key === key) return entries[index].value;
@@ -5170,7 +5170,7 @@
5170
5170
  getAll: function getAll(name) {
5171
5171
  var entries = getInternalParamsState(this).entries;
5172
5172
  validateArgumentsLength(arguments.length, 1);
5173
- var key = toString$2(name);
5173
+ var key = toString$1(name);
5174
5174
  var result = [];
5175
5175
  var index = 0;
5176
5176
  for (; index < entries.length; index++) {
@@ -5183,9 +5183,9 @@
5183
5183
  has: function has(name /* , value */) {
5184
5184
  var entries = getInternalParamsState(this).entries;
5185
5185
  var length = validateArgumentsLength(arguments.length, 1);
5186
- var key = toString$2(name);
5186
+ var key = toString$1(name);
5187
5187
  var $value = length < 2 ? undefined : arguments[1];
5188
- var value = $value === undefined ? $value : toString$2($value);
5188
+ var value = $value === undefined ? $value : toString$1($value);
5189
5189
  var index = 0;
5190
5190
  while (index < entries.length) {
5191
5191
  var entry = entries[index++];
@@ -5200,8 +5200,8 @@
5200
5200
  validateArgumentsLength(arguments.length, 1);
5201
5201
  var entries = state.entries;
5202
5202
  var found = false;
5203
- var key = toString$2(name);
5204
- var val = toString$2(value);
5203
+ var key = toString$1(name);
5204
+ var val = toString$1(value);
5205
5205
  var index = 0;
5206
5206
  var entry;
5207
5207
  for (; index < entries.length; index++) {
@@ -5292,7 +5292,7 @@
5292
5292
  headersSet(headers, 'content-type', 'application/x-www-form-urlencoded;charset=UTF-8');
5293
5293
  }
5294
5294
  return objectCreate(init, {
5295
- body: createPropertyDescriptor(0, toString$2(body)),
5295
+ body: createPropertyDescriptor(0, toString$1(body)),
5296
5296
  headers: createPropertyDescriptor(0, headers)
5297
5297
  });
5298
5298
  }
@@ -6052,7 +6052,7 @@
6052
6052
  !function(t,e){module.exports=e();}(commonjsGlobal,(function(){var t=1e3,e=6e4,n=36e5,r="millisecond",i="second",s="minute",u="hour",a="day",o="week",f="month",h="quarter",c="year",d="date",$="Invalid Date",l=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,y=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,M={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_")},m=function(t,e,n){var r=String(t);return !r||r.length>=e?t:""+Array(e+1-r.length).join(n)+t},g={s:m,z:function(t){var e=-t.utcOffset(),n=Math.abs(e),r=Math.floor(n/60),i=n%60;return (e<=0?"+":"-")+m(r,2,"0")+":"+m(i,2,"0")},m:function t(e,n){if(e.date()<n.date())return -t(n,e);var r=12*(n.year()-e.year())+(n.month()-e.month()),i=e.clone().add(r,f),s=n-i<0,u=e.clone().add(r+(s?-1:1),f);return +(-(r+(n-i)/(s?i-u:u-i))||0)},a:function(t){return t<0?Math.ceil(t)||0:Math.floor(t)},p:function(t){return {M:f,y:c,w:o,d:a,D:d,h:u,m:s,s:i,ms:r,Q:h}[t]||String(t||"").toLowerCase().replace(/s$/,"")},u:function(t){return void 0===t}},D="en",v={};v[D]=M;var p=function(t){return t instanceof _},S=function(t,e,n){var r;if(!t)return D;if("string"==typeof t)v[t]&&(r=t),e&&(v[t]=e,r=t);else {var i=t.name;v[i]=t,r=i;}return !n&&r&&(D=r),r||!n&&D},w=function(t,e){if(p(t))return t.clone();var n="object"==typeof e?e:{};return n.date=t,n.args=arguments,new _(n)},O=g;O.l=S,O.i=p,O.w=function(t,e){return w(t,{locale:e.$L,utc:e.$u,x:e.$x,$offset:e.$offset})};var _=function(){function M(t){this.$L=S(t.locale,null,!0),this.parse(t);}var m=M.prototype;return m.parse=function(t){this.$d=function(t){var e=t.date,n=t.utc;if(null===e)return new Date(NaN);if(O.u(e))return new Date;if(e instanceof Date)return new Date(e);if("string"==typeof e&&!/Z$/i.test(e)){var r=e.match(l);if(r){var i=r[2]-1||0,s=(r[7]||"0").substring(0,3);return n?new Date(Date.UTC(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,s)):new Date(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,s)}}return new Date(e)}(t),this.$x=t.x||{},this.init();},m.init=function(){var t=this.$d;this.$y=t.getFullYear(),this.$M=t.getMonth(),this.$D=t.getDate(),this.$W=t.getDay(),this.$H=t.getHours(),this.$m=t.getMinutes(),this.$s=t.getSeconds(),this.$ms=t.getMilliseconds();},m.$utils=function(){return O},m.isValid=function(){return !(this.$d.toString()===$)},m.isSame=function(t,e){var n=w(t);return this.startOf(e)<=n&&n<=this.endOf(e)},m.isAfter=function(t,e){return w(t)<this.startOf(e)},m.isBefore=function(t,e){return this.endOf(e)<w(t)},m.$g=function(t,e,n){return O.u(t)?this[e]:this.set(n,t)},m.unix=function(){return Math.floor(this.valueOf()/1e3)},m.valueOf=function(){return this.$d.getTime()},m.startOf=function(t,e){var n=this,r=!!O.u(e)||e,h=O.p(t),$=function(t,e){var i=O.w(n.$u?Date.UTC(n.$y,e,t):new Date(n.$y,e,t),n);return r?i:i.endOf(a)},l=function(t,e){return O.w(n.toDate()[t].apply(n.toDate("s"),(r?[0,0,0,0]:[23,59,59,999]).slice(e)),n)},y=this.$W,M=this.$M,m=this.$D,g="set"+(this.$u?"UTC":"");switch(h){case c:return r?$(1,0):$(31,11);case f:return r?$(1,M):$(0,M+1);case o:var D=this.$locale().weekStart||0,v=(y<D?y+7:y)-D;return $(r?m-v:m+(6-v),M);case a:case d:return l(g+"Hours",0);case u:return l(g+"Minutes",1);case s:return l(g+"Seconds",2);case i:return l(g+"Milliseconds",3);default:return this.clone()}},m.endOf=function(t){return this.startOf(t,!1)},m.$set=function(t,e){var n,o=O.p(t),h="set"+(this.$u?"UTC":""),$=(n={},n[a]=h+"Date",n[d]=h+"Date",n[f]=h+"Month",n[c]=h+"FullYear",n[u]=h+"Hours",n[s]=h+"Minutes",n[i]=h+"Seconds",n[r]=h+"Milliseconds",n)[o],l=o===a?this.$D+(e-this.$W):e;if(o===f||o===c){var y=this.clone().set(d,1);y.$d[$](l),y.init(),this.$d=y.set(d,Math.min(this.$D,y.daysInMonth())).$d;}else $&&this.$d[$](l);return this.init(),this},m.set=function(t,e){return this.clone().$set(t,e)},m.get=function(t){return this[O.p(t)]()},m.add=function(r,h){var d,$=this;r=Number(r);var l=O.p(h),y=function(t){var e=w($);return O.w(e.date(e.date()+Math.round(t*r)),$)};if(l===f)return this.set(f,this.$M+r);if(l===c)return this.set(c,this.$y+r);if(l===a)return y(1);if(l===o)return y(7);var M=(d={},d[s]=e,d[u]=n,d[i]=t,d)[l]||1,m=this.$d.getTime()+r*M;return O.w(m,this)},m.subtract=function(t,e){return this.add(-1*t,e)},m.format=function(t){var e=this,n=this.$locale();if(!this.isValid())return n.invalidDate||$;var r=t||"YYYY-MM-DDTHH:mm:ssZ",i=O.z(this),s=this.$H,u=this.$m,a=this.$M,o=n.weekdays,f=n.months,h=function(t,n,i,s){return t&&(t[n]||t(e,r))||i[n].substr(0,s)},c=function(t){return O.s(s%12||12,t,"0")},d=n.meridiem||function(t,e,n){var r=t<12?"AM":"PM";return n?r.toLowerCase():r},l={YY:String(this.$y).slice(-2),YYYY:this.$y,M:a+1,MM:O.s(a+1,2,"0"),MMM:h(n.monthsShort,a,f,3),MMMM:h(f,a),D:this.$D,DD:O.s(this.$D,2,"0"),d:String(this.$W),dd:h(n.weekdaysMin,this.$W,o,2),ddd:h(n.weekdaysShort,this.$W,o,3),dddd:o[this.$W],H:String(s),HH:O.s(s,2,"0"),h:c(1),hh:c(2),a:d(s,u,!0),A:d(s,u,!1),m:String(u),mm:O.s(u,2,"0"),s:String(this.$s),ss:O.s(this.$s,2,"0"),SSS:O.s(this.$ms,3,"0"),Z:i};return r.replace(y,(function(t,e){return e||l[t]||i.replace(":","")}))},m.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},m.diff=function(r,d,$){var l,y=O.p(d),M=w(r),m=(M.utcOffset()-this.utcOffset())*e,g=this-M,D=O.m(this,M);return D=(l={},l[c]=D/12,l[f]=D,l[h]=D/3,l[o]=(g-m)/6048e5,l[a]=(g-m)/864e5,l[u]=g/n,l[s]=g/e,l[i]=g/t,l)[y]||g,$?D:O.a(D)},m.daysInMonth=function(){return this.endOf(f).$D},m.$locale=function(){return v[this.$L]},m.locale=function(t,e){if(!t)return this.$L;var n=this.clone(),r=S(t,e,!0);return r&&(n.$L=r),n},m.clone=function(){return O.w(this.$d,this)},m.toDate=function(){return new Date(this.valueOf())},m.toJSON=function(){return this.isValid()?this.toISOString():null},m.toISOString=function(){return this.$d.toISOString()},m.toString=function(){return this.$d.toUTCString()},M}(),b=_.prototype;return w.prototype=b,[["$ms",r],["$s",i],["$m",s],["$H",u],["$W",a],["$M",f],["$y",c],["$D",d]].forEach((function(t){b[t[1]]=function(e){return this.$g(e,t[0],t[1])};})),w.extend=function(t,e){return t.$i||(t(e,_,w),t.$i=!0),w},w.locale=S,w.isDayjs=p,w.unix=function(t){return w(1e3*t)},w.en=v[D],w.Ls=v,w.p={},w}));
6053
6053
  });
6054
6054
 
6055
- function _isPlaceholder$1(a) {
6055
+ function _isPlaceholder(a) {
6056
6056
  return a != null && typeof a === 'object' && a['@@functional/placeholder'] === true;
6057
6057
  }
6058
6058
 
@@ -6065,9 +6065,9 @@
6065
6065
  * @return {Function} The curried function.
6066
6066
  */
6067
6067
 
6068
- function _curry1$1(fn) {
6068
+ function _curry1(fn) {
6069
6069
  return function f1(a) {
6070
- if (arguments.length === 0 || _isPlaceholder$1(a)) {
6070
+ if (arguments.length === 0 || _isPlaceholder(a)) {
6071
6071
  return f1;
6072
6072
  } else {
6073
6073
  return fn.apply(this, arguments);
@@ -6084,21 +6084,21 @@
6084
6084
  * @return {Function} The curried function.
6085
6085
  */
6086
6086
 
6087
- function _curry2$1(fn) {
6087
+ function _curry2(fn) {
6088
6088
  return function f2(a, b) {
6089
6089
  switch (arguments.length) {
6090
6090
  case 0:
6091
6091
  return f2;
6092
6092
 
6093
6093
  case 1:
6094
- return _isPlaceholder$1(a) ? f2 : _curry1$1(function (_b) {
6094
+ return _isPlaceholder(a) ? f2 : _curry1(function (_b) {
6095
6095
  return fn(a, _b);
6096
6096
  });
6097
6097
 
6098
6098
  default:
6099
- return _isPlaceholder$1(a) && _isPlaceholder$1(b) ? f2 : _isPlaceholder$1(a) ? _curry1$1(function (_a) {
6099
+ return _isPlaceholder(a) && _isPlaceholder(b) ? f2 : _isPlaceholder(a) ? _curry1(function (_a) {
6100
6100
  return fn(_a, b);
6101
- }) : _isPlaceholder$1(b) ? _curry1$1(function (_b) {
6101
+ }) : _isPlaceholder(b) ? _curry1(function (_b) {
6102
6102
  return fn(a, _b);
6103
6103
  }) : fn(a, b);
6104
6104
  }
@@ -6189,7 +6189,7 @@
6189
6189
  while (combinedIdx < received.length || argsIdx < arguments.length) {
6190
6190
  var result;
6191
6191
 
6192
- if (combinedIdx < received.length && (!_isPlaceholder$1(received[combinedIdx]) || argsIdx >= arguments.length)) {
6192
+ if (combinedIdx < received.length && (!_isPlaceholder(received[combinedIdx]) || argsIdx >= arguments.length)) {
6193
6193
  result = received[combinedIdx];
6194
6194
  } else {
6195
6195
  result = arguments[argsIdx];
@@ -6198,7 +6198,7 @@
6198
6198
 
6199
6199
  combined[combinedIdx] = result;
6200
6200
 
6201
- if (!_isPlaceholder$1(result)) {
6201
+ if (!_isPlaceholder(result)) {
6202
6202
  left -= 1;
6203
6203
  }
6204
6204
 
@@ -6254,9 +6254,9 @@
6254
6254
 
6255
6255
  var curryN =
6256
6256
  /*#__PURE__*/
6257
- _curry2$1(function curryN(length, fn) {
6257
+ _curry2(function curryN(length, fn) {
6258
6258
  if (length === 1) {
6259
- return _curry1$1(fn);
6259
+ return _curry1(fn);
6260
6260
  }
6261
6261
 
6262
6262
  return _arity(length, _curryN(length, [], fn));
@@ -6278,31 +6278,31 @@
6278
6278
  return f3;
6279
6279
 
6280
6280
  case 1:
6281
- return _isPlaceholder$1(a) ? f3 : _curry2$1(function (_b, _c) {
6281
+ return _isPlaceholder(a) ? f3 : _curry2(function (_b, _c) {
6282
6282
  return fn(a, _b, _c);
6283
6283
  });
6284
6284
 
6285
6285
  case 2:
6286
- return _isPlaceholder$1(a) && _isPlaceholder$1(b) ? f3 : _isPlaceholder$1(a) ? _curry2$1(function (_a, _c) {
6286
+ return _isPlaceholder(a) && _isPlaceholder(b) ? f3 : _isPlaceholder(a) ? _curry2(function (_a, _c) {
6287
6287
  return fn(_a, b, _c);
6288
- }) : _isPlaceholder$1(b) ? _curry2$1(function (_b, _c) {
6288
+ }) : _isPlaceholder(b) ? _curry2(function (_b, _c) {
6289
6289
  return fn(a, _b, _c);
6290
- }) : _curry1$1(function (_c) {
6290
+ }) : _curry1(function (_c) {
6291
6291
  return fn(a, b, _c);
6292
6292
  });
6293
6293
 
6294
6294
  default:
6295
- return _isPlaceholder$1(a) && _isPlaceholder$1(b) && _isPlaceholder$1(c) ? f3 : _isPlaceholder$1(a) && _isPlaceholder$1(b) ? _curry2$1(function (_a, _b) {
6295
+ return _isPlaceholder(a) && _isPlaceholder(b) && _isPlaceholder(c) ? f3 : _isPlaceholder(a) && _isPlaceholder(b) ? _curry2(function (_a, _b) {
6296
6296
  return fn(_a, _b, c);
6297
- }) : _isPlaceholder$1(a) && _isPlaceholder$1(c) ? _curry2$1(function (_a, _c) {
6297
+ }) : _isPlaceholder(a) && _isPlaceholder(c) ? _curry2(function (_a, _c) {
6298
6298
  return fn(_a, b, _c);
6299
- }) : _isPlaceholder$1(b) && _isPlaceholder$1(c) ? _curry2$1(function (_b, _c) {
6299
+ }) : _isPlaceholder(b) && _isPlaceholder(c) ? _curry2(function (_b, _c) {
6300
6300
  return fn(a, _b, _c);
6301
- }) : _isPlaceholder$1(a) ? _curry1$1(function (_a) {
6301
+ }) : _isPlaceholder(a) ? _curry1(function (_a) {
6302
6302
  return fn(_a, b, c);
6303
- }) : _isPlaceholder$1(b) ? _curry1$1(function (_b) {
6303
+ }) : _isPlaceholder(b) ? _curry1(function (_b) {
6304
6304
  return fn(a, _b, c);
6305
- }) : _isPlaceholder$1(c) ? _curry1$1(function (_c) {
6305
+ }) : _isPlaceholder(c) ? _curry1(function (_c) {
6306
6306
  return fn(a, b, _c);
6307
6307
  }) : fn(a, b, c);
6308
6308
  }
@@ -6427,7 +6427,7 @@
6427
6427
 
6428
6428
  var _isArrayLike =
6429
6429
  /*#__PURE__*/
6430
- _curry1$1(function isArrayLike(x) {
6430
+ _curry1(function isArrayLike(x) {
6431
6431
  if (_isArray(x)) {
6432
6432
  return true;
6433
6433
  }
@@ -6510,7 +6510,7 @@
6510
6510
 
6511
6511
  var bind =
6512
6512
  /*#__PURE__*/
6513
- _curry2$1(function bind(fn, thisObj) {
6513
+ _curry2(function bind(fn, thisObj) {
6514
6514
  return _arity(fn.length, function () {
6515
6515
  return fn.apply(thisObj, arguments);
6516
6516
  });
@@ -6604,41 +6604,41 @@
6604
6604
 
6605
6605
  var _xmap =
6606
6606
  /*#__PURE__*/
6607
- _curry2$1(function _xmap(f, xf) {
6607
+ _curry2(function _xmap(f, xf) {
6608
6608
  return new XMap(f, xf);
6609
6609
  });
6610
6610
 
6611
- function _has$1(prop, obj) {
6611
+ function _has(prop, obj) {
6612
6612
  return Object.prototype.hasOwnProperty.call(obj, prop);
6613
6613
  }
6614
6614
 
6615
- var toString$1 = Object.prototype.toString;
6615
+ var toString = Object.prototype.toString;
6616
6616
 
6617
- var _isArguments$1 =
6617
+ var _isArguments =
6618
6618
  /*#__PURE__*/
6619
6619
  function () {
6620
- return toString$1.call(arguments) === '[object Arguments]' ? function _isArguments(x) {
6621
- return toString$1.call(x) === '[object Arguments]';
6620
+ return toString.call(arguments) === '[object Arguments]' ? function _isArguments(x) {
6621
+ return toString.call(x) === '[object Arguments]';
6622
6622
  } : function _isArguments(x) {
6623
- return _has$1('callee', x);
6623
+ return _has('callee', x);
6624
6624
  };
6625
6625
  }();
6626
6626
 
6627
- var hasEnumBug$1 = !
6627
+ var hasEnumBug = !
6628
6628
  /*#__PURE__*/
6629
6629
  {
6630
6630
  toString: null
6631
6631
  }.propertyIsEnumerable('toString');
6632
- var nonEnumerableProps$1 = ['constructor', 'valueOf', 'isPrototypeOf', 'toString', 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString']; // Safari bug
6632
+ var nonEnumerableProps = ['constructor', 'valueOf', 'isPrototypeOf', 'toString', 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString']; // Safari bug
6633
6633
 
6634
- var hasArgsEnumBug$1 =
6634
+ var hasArgsEnumBug =
6635
6635
  /*#__PURE__*/
6636
6636
  function () {
6637
6637
 
6638
6638
  return arguments.propertyIsEnumerable('length');
6639
6639
  }();
6640
6640
 
6641
- var contains$1 = function contains(list, item) {
6641
+ var contains = function contains(list, item) {
6642
6642
  var idx = 0;
6643
6643
 
6644
6644
  while (idx < list.length) {
@@ -6671,13 +6671,13 @@
6671
6671
  */
6672
6672
 
6673
6673
 
6674
- var keys$2 = typeof Object.keys === 'function' && !hasArgsEnumBug$1 ?
6674
+ var keys = typeof Object.keys === 'function' && !hasArgsEnumBug ?
6675
6675
  /*#__PURE__*/
6676
- _curry1$1(function keys(obj) {
6676
+ _curry1(function keys(obj) {
6677
6677
  return Object(obj) !== obj ? [] : Object.keys(obj);
6678
6678
  }) :
6679
6679
  /*#__PURE__*/
6680
- _curry1$1(function keys(obj) {
6680
+ _curry1(function keys(obj) {
6681
6681
  if (Object(obj) !== obj) {
6682
6682
  return [];
6683
6683
  }
@@ -6685,21 +6685,21 @@
6685
6685
  var prop, nIdx;
6686
6686
  var ks = [];
6687
6687
 
6688
- var checkArgsLength = hasArgsEnumBug$1 && _isArguments$1(obj);
6688
+ var checkArgsLength = hasArgsEnumBug && _isArguments(obj);
6689
6689
 
6690
6690
  for (prop in obj) {
6691
- if (_has$1(prop, obj) && (!checkArgsLength || prop !== 'length')) {
6691
+ if (_has(prop, obj) && (!checkArgsLength || prop !== 'length')) {
6692
6692
  ks[ks.length] = prop;
6693
6693
  }
6694
6694
  }
6695
6695
 
6696
- if (hasEnumBug$1) {
6697
- nIdx = nonEnumerableProps$1.length - 1;
6696
+ if (hasEnumBug) {
6697
+ nIdx = nonEnumerableProps.length - 1;
6698
6698
 
6699
6699
  while (nIdx >= 0) {
6700
- prop = nonEnumerableProps$1[nIdx];
6700
+ prop = nonEnumerableProps[nIdx];
6701
6701
 
6702
- if (_has$1(prop, obj) && !contains$1(ks, prop)) {
6702
+ if (_has(prop, obj) && !contains(ks, prop)) {
6703
6703
  ks[ks.length] = prop;
6704
6704
  }
6705
6705
 
@@ -6748,7 +6748,7 @@
6748
6748
 
6749
6749
  var map =
6750
6750
  /*#__PURE__*/
6751
- _curry2$1(
6751
+ _curry2(
6752
6752
  /*#__PURE__*/
6753
6753
  _dispatchable(['fantasy-land/map', 'map'], _xmap, function map(fn, functor) {
6754
6754
  switch (Object.prototype.toString.call(functor)) {
@@ -6761,7 +6761,7 @@
6761
6761
  return _reduce(function (acc, key) {
6762
6762
  acc[key] = fn(functor[key]);
6763
6763
  return acc;
6764
- }, {}, keys$2(functor));
6764
+ }, {}, keys(functor));
6765
6765
 
6766
6766
  default:
6767
6767
  return _map(fn, functor);
@@ -6809,7 +6809,7 @@
6809
6809
 
6810
6810
  var nth =
6811
6811
  /*#__PURE__*/
6812
- _curry2$1(function nth(offset, list) {
6812
+ _curry2(function nth(offset, list) {
6813
6813
  var idx = offset < 0 ? list.length + offset : offset;
6814
6814
  return _isString(list) ? list.charAt(idx) : list[idx];
6815
6815
  });
@@ -6835,7 +6835,7 @@
6835
6835
 
6836
6836
  var paths =
6837
6837
  /*#__PURE__*/
6838
- _curry2$1(function paths(pathsArray, obj) {
6838
+ _curry2(function paths(pathsArray, obj) {
6839
6839
  return pathsArray.map(function (paths) {
6840
6840
  var val = obj;
6841
6841
  var idx = 0;
@@ -6878,7 +6878,7 @@
6878
6878
 
6879
6879
  var path =
6880
6880
  /*#__PURE__*/
6881
- _curry2$1(function path(pathAr, obj) {
6881
+ _curry2(function path(pathAr, obj) {
6882
6882
  return paths([pathAr], obj)[0];
6883
6883
  });
6884
6884
 
@@ -6906,7 +6906,7 @@
6906
6906
 
6907
6907
  var prop =
6908
6908
  /*#__PURE__*/
6909
- _curry2$1(function prop(p, obj) {
6909
+ _curry2(function prop(p, obj) {
6910
6910
  return path([p], obj);
6911
6911
  });
6912
6912
 
@@ -6940,7 +6940,7 @@
6940
6940
 
6941
6941
  var pluck =
6942
6942
  /*#__PURE__*/
6943
- _curry2$1(function pluck(p, list) {
6943
+ _curry2(function pluck(p, list) {
6944
6944
  return map(prop(p), list);
6945
6945
  });
6946
6946
 
@@ -7030,7 +7030,7 @@
7030
7030
  };
7031
7031
  }
7032
7032
 
7033
- function _cloneRegExp$1(pattern) {
7033
+ function _cloneRegExp(pattern) {
7034
7034
  return new RegExp(pattern.source, (pattern.global ? 'g' : '') + (pattern.ignoreCase ? 'i' : '') + (pattern.multiline ? 'm' : '') + (pattern.sticky ? 'y' : '') + (pattern.unicode ? 'u' : ''));
7035
7035
  }
7036
7036
 
@@ -7060,9 +7060,9 @@
7060
7060
  * R.type(undefined); //=> "Undefined"
7061
7061
  */
7062
7062
 
7063
- var type$1 =
7063
+ var type =
7064
7064
  /*#__PURE__*/
7065
- _curry1$1(function type(val) {
7065
+ _curry1(function type(val) {
7066
7066
  return val === null ? 'Null' : val === undefined ? 'Undefined' : Object.prototype.toString.call(val).slice(8, -1);
7067
7067
  });
7068
7068
 
@@ -7077,7 +7077,7 @@
7077
7077
  * @return {*} The copied value.
7078
7078
  */
7079
7079
 
7080
- function _clone$1(value, refFrom, refTo, deep) {
7080
+ function _clone(value, refFrom, refTo, deep) {
7081
7081
  var copy = function copy(copiedValue) {
7082
7082
  var len = refFrom.length;
7083
7083
  var idx = 0;
@@ -7094,13 +7094,13 @@
7094
7094
  refTo[idx + 1] = copiedValue;
7095
7095
 
7096
7096
  for (var key in value) {
7097
- copiedValue[key] = deep ? _clone$1(value[key], refFrom, refTo, true) : value[key];
7097
+ copiedValue[key] = deep ? _clone(value[key], refFrom, refTo, true) : value[key];
7098
7098
  }
7099
7099
 
7100
7100
  return copiedValue;
7101
7101
  };
7102
7102
 
7103
- switch (type$1(value)) {
7103
+ switch (type(value)) {
7104
7104
  case 'Object':
7105
7105
  return copy({});
7106
7106
 
@@ -7111,7 +7111,7 @@
7111
7111
  return new Date(value.valueOf());
7112
7112
 
7113
7113
  case 'RegExp':
7114
- return _cloneRegExp$1(value);
7114
+ return _cloneRegExp(value);
7115
7115
 
7116
7116
  default:
7117
7117
  return value;
@@ -7140,10 +7140,10 @@
7140
7140
  * objects[0] === objectsClone[0]; //=> false
7141
7141
  */
7142
7142
 
7143
- var clone$1 =
7143
+ var clone =
7144
7144
  /*#__PURE__*/
7145
- _curry1$1(function clone(value) {
7146
- return value != null && typeof value.clone === 'function' ? value.clone() : _clone$1(value, [], [], true);
7145
+ _curry1(function clone(value) {
7146
+ return value != null && typeof value.clone === 'function' ? value.clone() : _clone(value, [], [], true);
7147
7147
  });
7148
7148
 
7149
7149
  function _pipe(f, g) {
@@ -7239,7 +7239,7 @@
7239
7239
 
7240
7240
  var tail =
7241
7241
  /*#__PURE__*/
7242
- _curry1$1(
7242
+ _curry1(
7243
7243
  /*#__PURE__*/
7244
7244
  _checkForMethod('tail',
7245
7245
  /*#__PURE__*/
@@ -7303,9 +7303,9 @@
7303
7303
 
7304
7304
  var identity =
7305
7305
  /*#__PURE__*/
7306
- _curry1$1(_identity);
7306
+ _curry1(_identity);
7307
7307
 
7308
- function _arrayFromIterator$1(iter) {
7308
+ function _arrayFromIterator(iter) {
7309
7309
  var list = [];
7310
7310
  var next;
7311
7311
 
@@ -7316,7 +7316,7 @@
7316
7316
  return list;
7317
7317
  }
7318
7318
 
7319
- function _includesWith$1(pred, x, list) {
7319
+ function _includesWith(pred, x, list) {
7320
7320
  var idx = 0;
7321
7321
  var len = list.length;
7322
7322
 
@@ -7331,14 +7331,14 @@
7331
7331
  return false;
7332
7332
  }
7333
7333
 
7334
- function _functionName$1(f) {
7334
+ function _functionName(f) {
7335
7335
  // String(x => x) evaluates to "x => x", so the pattern may not match.
7336
7336
  var match = String(f).match(/^function (\w*)/);
7337
7337
  return match == null ? '' : match[1];
7338
7338
  }
7339
7339
 
7340
7340
  // Based on https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
7341
- function _objectIs$2(a, b) {
7341
+ function _objectIs(a, b) {
7342
7342
  // SameValue algorithm
7343
7343
  if (a === b) {
7344
7344
  // Steps 1-5, 7-10
@@ -7350,7 +7350,7 @@
7350
7350
  }
7351
7351
  }
7352
7352
 
7353
- var _objectIs$3 = typeof Object.is === 'function' ? Object.is : _objectIs$2;
7353
+ var _objectIs$1 = typeof Object.is === 'function' ? Object.is : _objectIs;
7354
7354
 
7355
7355
  /**
7356
7356
  * private _uniqContentEquals function.
@@ -7363,29 +7363,29 @@
7363
7363
  * - [1,1,1] and [1,2,3]
7364
7364
  * */
7365
7365
 
7366
- function _uniqContentEquals$1(aIterator, bIterator, stackA, stackB) {
7367
- var a = _arrayFromIterator$1(aIterator);
7366
+ function _uniqContentEquals(aIterator, bIterator, stackA, stackB) {
7367
+ var a = _arrayFromIterator(aIterator);
7368
7368
 
7369
- var b = _arrayFromIterator$1(bIterator);
7369
+ var b = _arrayFromIterator(bIterator);
7370
7370
 
7371
7371
  function eq(_a, _b) {
7372
- return _equals$1(_a, _b, stackA.slice(), stackB.slice());
7372
+ return _equals(_a, _b, stackA.slice(), stackB.slice());
7373
7373
  } // if *a* array contains any element that is not included in *b*
7374
7374
 
7375
7375
 
7376
- return !_includesWith$1(function (b, aItem) {
7377
- return !_includesWith$1(eq, aItem, b);
7376
+ return !_includesWith(function (b, aItem) {
7377
+ return !_includesWith(eq, aItem, b);
7378
7378
  }, b, a);
7379
7379
  }
7380
7380
 
7381
- function _equals$1(a, b, stackA, stackB) {
7382
- if (_objectIs$3(a, b)) {
7381
+ function _equals(a, b, stackA, stackB) {
7382
+ if (_objectIs$1(a, b)) {
7383
7383
  return true;
7384
7384
  }
7385
7385
 
7386
- var typeA = type$1(a);
7386
+ var typeA = type(a);
7387
7387
 
7388
- if (typeA !== type$1(b)) {
7388
+ if (typeA !== type(b)) {
7389
7389
  return false;
7390
7390
  }
7391
7391
 
@@ -7405,7 +7405,7 @@
7405
7405
  case 'Arguments':
7406
7406
  case 'Array':
7407
7407
  case 'Object':
7408
- if (typeof a.constructor === 'function' && _functionName$1(a.constructor) === 'Promise') {
7408
+ if (typeof a.constructor === 'function' && _functionName(a.constructor) === 'Promise') {
7409
7409
  return a === b;
7410
7410
  }
7411
7411
 
@@ -7414,14 +7414,14 @@
7414
7414
  case 'Boolean':
7415
7415
  case 'Number':
7416
7416
  case 'String':
7417
- if (!(typeof a === typeof b && _objectIs$3(a.valueOf(), b.valueOf()))) {
7417
+ if (!(typeof a === typeof b && _objectIs$1(a.valueOf(), b.valueOf()))) {
7418
7418
  return false;
7419
7419
  }
7420
7420
 
7421
7421
  break;
7422
7422
 
7423
7423
  case 'Date':
7424
- if (!_objectIs$3(a.valueOf(), b.valueOf())) {
7424
+ if (!_objectIs$1(a.valueOf(), b.valueOf())) {
7425
7425
  return false;
7426
7426
  }
7427
7427
 
@@ -7454,14 +7454,14 @@
7454
7454
  return false;
7455
7455
  }
7456
7456
 
7457
- return _uniqContentEquals$1(a.entries(), b.entries(), stackA.concat([a]), stackB.concat([b]));
7457
+ return _uniqContentEquals(a.entries(), b.entries(), stackA.concat([a]), stackB.concat([b]));
7458
7458
 
7459
7459
  case 'Set':
7460
7460
  if (a.size !== b.size) {
7461
7461
  return false;
7462
7462
  }
7463
7463
 
7464
- return _uniqContentEquals$1(a.values(), b.values(), stackA.concat([a]), stackB.concat([b]));
7464
+ return _uniqContentEquals(a.values(), b.values(), stackA.concat([a]), stackB.concat([b]));
7465
7465
 
7466
7466
  case 'Arguments':
7467
7467
  case 'Array':
@@ -7489,9 +7489,9 @@
7489
7489
  return false;
7490
7490
  }
7491
7491
 
7492
- var keysA = keys$2(a);
7492
+ var keysA = keys(a);
7493
7493
 
7494
- if (keysA.length !== keys$2(b).length) {
7494
+ if (keysA.length !== keys(b).length) {
7495
7495
  return false;
7496
7496
  }
7497
7497
 
@@ -7502,7 +7502,7 @@
7502
7502
  while (idx >= 0) {
7503
7503
  var key = keysA[idx];
7504
7504
 
7505
- if (!(_has$1(key, b) && _equals$1(b[key], a[key], extendedStackA, extendedStackB))) {
7505
+ if (!(_has(key, b) && _equals(b[key], a[key], extendedStackA, extendedStackB))) {
7506
7506
  return false;
7507
7507
  }
7508
7508
 
@@ -7538,10 +7538,10 @@
7538
7538
  * R.equals(a, b); //=> true
7539
7539
  */
7540
7540
 
7541
- var equals$1 =
7541
+ var equals =
7542
7542
  /*#__PURE__*/
7543
- _curry2$1(function equals(a, b) {
7544
- return _equals$1(a, b, [], []);
7543
+ _curry2(function equals(a, b) {
7544
+ return _equals(a, b, [], []);
7545
7545
  });
7546
7546
 
7547
7547
  function _indexOf(list, a, idx) {
@@ -7601,7 +7601,7 @@
7601
7601
 
7602
7602
 
7603
7603
  while (idx < list.length) {
7604
- if (equals$1(list[idx], a)) {
7604
+ if (equals(list[idx], a)) {
7605
7605
  return idx;
7606
7606
  }
7607
7607
 
@@ -7655,7 +7655,7 @@
7655
7655
 
7656
7656
  var _xfilter =
7657
7657
  /*#__PURE__*/
7658
- _curry2$1(function _xfilter(f, xf) {
7658
+ _curry2(function _xfilter(f, xf) {
7659
7659
  return new XFilter(f, xf);
7660
7660
  });
7661
7661
 
@@ -7689,7 +7689,7 @@
7689
7689
 
7690
7690
  var filter =
7691
7691
  /*#__PURE__*/
7692
- _curry2$1(
7692
+ _curry2(
7693
7693
  /*#__PURE__*/
7694
7694
  _dispatchable(['filter'], _xfilter, function (pred, filterable) {
7695
7695
  return _isObject(filterable) ? _reduce(function (acc, key) {
@@ -7698,7 +7698,7 @@
7698
7698
  }
7699
7699
 
7700
7700
  return acc;
7701
- }, {}, keys$2(filterable)) : // else
7701
+ }, {}, keys(filterable)) : // else
7702
7702
  _filter(pred, filterable);
7703
7703
  }));
7704
7704
 
@@ -7719,7 +7719,7 @@
7719
7719
  var key;
7720
7720
 
7721
7721
  for (key in this.inputs) {
7722
- if (_has$1(key, this.inputs)) {
7722
+ if (_has(key, this.inputs)) {
7723
7723
  result = this.xf['@@transducer/step'](result, this.inputs[key]);
7724
7724
 
7725
7725
  if (result['@@transducer/reduced']) {
@@ -7798,7 +7798,7 @@
7798
7798
  _dispatchable([], _xreduceBy, function reduceBy(valueFn, valueAcc, keyFn, list) {
7799
7799
  return _reduce(function (acc, elt) {
7800
7800
  var key = keyFn(elt);
7801
- acc[key] = valueFn(_has$1(key, acc) ? acc[key] : _clone$1(valueAcc, [], [], false), elt);
7801
+ acc[key] = valueFn(_has(key, acc) ? acc[key] : _clone(valueAcc, [], [], false), elt);
7802
7802
  return acc;
7803
7803
  }, {}, list);
7804
7804
  }));
@@ -8023,7 +8023,7 @@
8023
8023
 
8024
8024
  var _xtake =
8025
8025
  /*#__PURE__*/
8026
- _curry2$1(function _xtake(n, xf) {
8026
+ _curry2(function _xtake(n, xf) {
8027
8027
  return new XTake(n, xf);
8028
8028
  });
8029
8029
 
@@ -8073,7 +8073,7 @@
8073
8073
 
8074
8074
  var take =
8075
8075
  /*#__PURE__*/
8076
- _curry2$1(
8076
+ _curry2(
8077
8077
  /*#__PURE__*/
8078
8078
  _dispatchable(['take'], _xtake, function take(n, xs) {
8079
8079
  return slice(0, n < 0 ? Infinity : n, xs);
@@ -8124,7 +8124,7 @@
8124
8124
 
8125
8125
  var _xdropLast =
8126
8126
  /*#__PURE__*/
8127
- _curry2$1(function _xdropLast(n, xf) {
8127
+ _curry2(function _xdropLast(n, xf) {
8128
8128
  return new XDropLast(n, xf);
8129
8129
  });
8130
8130
 
@@ -8154,7 +8154,7 @@
8154
8154
 
8155
8155
  var dropLast =
8156
8156
  /*#__PURE__*/
8157
- _curry2$1(
8157
+ _curry2(
8158
8158
  /*#__PURE__*/
8159
8159
  _dispatchable([], _xdropLast, dropLast$1));
8160
8160
 
@@ -8178,7 +8178,7 @@
8178
8178
 
8179
8179
  var flatten =
8180
8180
  /*#__PURE__*/
8181
- _curry1$1(
8181
+ _curry1(
8182
8182
  /*#__PURE__*/
8183
8183
  _makeFlat(true));
8184
8184
 
@@ -8199,9 +8199,9 @@
8199
8199
  * R.fromPairs([['a', 1], ['b', 2], ['c', 3]]); //=> {a: 1, b: 2, c: 3}
8200
8200
  */
8201
8201
 
8202
- var fromPairs$1 =
8202
+ var fromPairs =
8203
8203
  /*#__PURE__*/
8204
- _curry1$1(function fromPairs(pairs) {
8204
+ _curry1(function fromPairs(pairs) {
8205
8205
  var result = {};
8206
8206
  var idx = 0;
8207
8207
 
@@ -8256,7 +8256,7 @@
8256
8256
 
8257
8257
  var groupBy =
8258
8258
  /*#__PURE__*/
8259
- _curry2$1(
8259
+ _curry2(
8260
8260
  /*#__PURE__*/
8261
8261
  _checkForMethod('groupBy',
8262
8262
  /*#__PURE__*/
@@ -8319,7 +8319,7 @@
8319
8319
 
8320
8320
  var uniqBy =
8321
8321
  /*#__PURE__*/
8322
- _curry2$1(function uniqBy(fn, list) {
8322
+ _curry2(function uniqBy(fn, list) {
8323
8323
  var set = new _Set();
8324
8324
  var result = [];
8325
8325
  var idx = 0;
@@ -8375,7 +8375,7 @@
8375
8375
 
8376
8376
  if (source != null) {
8377
8377
  for (var nextKey in source) {
8378
- if (_has$1(nextKey, source)) {
8378
+ if (_has(nextKey, source)) {
8379
8379
  output[nextKey] = source[nextKey];
8380
8380
  }
8381
8381
  }
@@ -8440,7 +8440,7 @@
8440
8440
 
8441
8441
  var mergeAll =
8442
8442
  /*#__PURE__*/
8443
- _curry1$1(function mergeAll(list) {
8443
+ _curry1(function mergeAll(list) {
8444
8444
  return _objectAssign$1.apply(null, [{}].concat(list));
8445
8445
  });
8446
8446
 
@@ -8477,13 +8477,13 @@
8477
8477
  var k;
8478
8478
 
8479
8479
  for (k in l) {
8480
- if (_has$1(k, l)) {
8481
- result[k] = _has$1(k, r) ? fn(k, l[k], r[k]) : l[k];
8480
+ if (_has(k, l)) {
8481
+ result[k] = _has(k, r) ? fn(k, l[k], r[k]) : l[k];
8482
8482
  }
8483
8483
  }
8484
8484
 
8485
8485
  for (k in r) {
8486
- if (_has$1(k, r) && !_has$1(k, result)) {
8486
+ if (_has(k, r) && !_has(k, result)) {
8487
8487
  result[k] = r[k];
8488
8488
  }
8489
8489
  }
@@ -8556,7 +8556,7 @@
8556
8556
 
8557
8557
  var mergeDeepLeft =
8558
8558
  /*#__PURE__*/
8559
- _curry2$1(function mergeDeepLeft(lObj, rObj) {
8559
+ _curry2(function mergeDeepLeft(lObj, rObj) {
8560
8560
  return mergeDeepWithKey(function (k, lVal, rVal) {
8561
8561
  return lVal;
8562
8562
  }, lObj, rObj);
@@ -8593,6 +8593,39 @@
8593
8593
  return f(b) < f(a) ? b : a;
8594
8594
  });
8595
8595
 
8596
+ /**
8597
+ * Converts an object into an array of key, value arrays. Only the object's
8598
+ * own properties are used.
8599
+ * Note that the order of the output array is not guaranteed to be consistent
8600
+ * across different JS platforms.
8601
+ *
8602
+ * @func
8603
+ * @memberOf R
8604
+ * @since v0.4.0
8605
+ * @category Object
8606
+ * @sig {String: *} -> [[String,*]]
8607
+ * @param {Object} obj The object to extract from
8608
+ * @return {Array} An array of key, value arrays from the object's own properties.
8609
+ * @see R.fromPairs
8610
+ * @example
8611
+ *
8612
+ * R.toPairs({a: 1, b: 2, c: 3}); //=> [['a', 1], ['b', 2], ['c', 3]]
8613
+ */
8614
+
8615
+ var toPairs =
8616
+ /*#__PURE__*/
8617
+ _curry1(function toPairs(obj) {
8618
+ var pairs = [];
8619
+
8620
+ for (var prop in obj) {
8621
+ if (_has(prop, obj)) {
8622
+ pairs[pairs.length] = [prop, obj[prop]];
8623
+ }
8624
+ }
8625
+
8626
+ return pairs;
8627
+ });
8628
+
8596
8629
  var quarterOfYear = createCommonjsModule(function (module, exports) {
8597
8630
  !function(t,n){module.exports=n();}(commonjsGlobal,(function(){var t="month",n="quarter";return function(e,i){var r=i.prototype;r.quarter=function(t){return this.$utils().u(t)?Math.ceil((this.month()+1)/3):this.month(this.month()%3+3*(t-1))};var s=r.add;r.add=function(e,i){return e=Number(e),this.$utils().p(i)===n?this.add(3*e,t):s.bind(this)(e,i)};var u=r.startOf;r.startOf=function(e,i){var r=this.$utils(),s=!!r.u(i)||i;if(r.p(e)===n){var o=this.quarter()-1;return s?this.month(3*o).startOf(t).startOf("day"):this.month(3*o+2).endOf(t).endOf("day")}return u.bind(this)(e,i)};}}));
8598
8631
  });
@@ -9736,7 +9769,7 @@
9736
9769
  function areQueriesEqual() {
9737
9770
  var query1 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
9738
9771
  var query2 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
9739
- return equals$1(Object.entries(query1 && query1.order || {}), Object.entries(query2 && query2.order || {})) && equals$1(query1, query2);
9772
+ return equals(Object.entries(query1 && query1.order || {}), Object.entries(query2 && query2.order || {})) && equals(query1, query2);
9740
9773
  }
9741
9774
  function defaultOrder(query) {
9742
9775
  var granularity = (query.timeDimensions || []).find(function (d) {
@@ -9754,7 +9787,7 @@
9754
9787
  function defaultHeuristics(newState) {
9755
9788
  var oldQuery = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
9756
9789
  var options = arguments.length > 2 ? arguments[2] : undefined;
9757
- var _clone = clone$1(newState),
9790
+ var _clone = clone(newState),
9758
9791
  query = _clone.query,
9759
9792
  props = _objectWithoutProperties(_clone, _excluded);
9760
9793
  var meta = options.meta,
@@ -10208,7 +10241,7 @@
10208
10241
  var measureValue = function measureValue(row, measure) {
10209
10242
  return row[measure] || pivotConfig.fillWithValue || 0;
10210
10243
  };
10211
- if (pivotConfig.fillMissingDates && pivotConfig.x.length === 1 && equals$1(pivotConfig.x, (query.timeDimensions || []).filter(function (td) {
10244
+ if (pivotConfig.fillMissingDates && pivotConfig.x.length === 1 && equals(pivotConfig.x, (query.timeDimensions || []).filter(function (td) {
10212
10245
  return Boolean(td.granularity);
10213
10246
  }).map(function (td) {
10214
10247
  return ResultSet.timeDimensionMember(td);
@@ -10361,7 +10394,7 @@
10361
10394
  return this.pivot(normalizedPivotConfig).map(function (_ref36) {
10362
10395
  var xValues = _ref36.xValues,
10363
10396
  yValuesArray = _ref36.yValuesArray;
10364
- return fromPairs$1(normalizedPivotConfig.x.map(function (key, index) {
10397
+ return fromPairs(normalizedPivotConfig.x.map(function (key, index) {
10365
10398
  return [key, xValues[index]];
10366
10399
  }).concat(isMeasuresPresent ? yValuesArray.map(function (_ref37) {
10367
10400
  var _ref38 = _slicedToArray(_ref37, 2),
@@ -10571,7 +10604,7 @@
10571
10604
  return Boolean(td.granularity);
10572
10605
  });
10573
10606
  this.backwardCompatibleData[resultIndex] = data.map(function (row) {
10574
- return _objectSpread$2(_objectSpread$2({}, row), fromPairs$1(Object.keys(row).filter(function (field) {
10607
+ return _objectSpread$2(_objectSpread$2({}, row), fromPairs(Object.keys(row).filter(function (field) {
10575
10608
  return timeDimensions.find(function (d) {
10576
10609
  return d.dimension === field;
10577
10610
  }) && !row[ResultSet.timeDimensionMember(timeDimensions.find(function (d) {
@@ -10604,7 +10637,7 @@
10604
10637
  key: "serialize",
10605
10638
  value: function serialize() {
10606
10639
  return {
10607
- loadResponse: clone$1(this.loadResponse)
10640
+ loadResponse: clone(this.loadResponse)
10608
10641
  };
10609
10642
  }
10610
10643
  }], [{
@@ -10697,709 +10730,6 @@
10697
10730
  return ResultSet;
10698
10731
  }();
10699
10732
 
10700
- function _isPlaceholder(a) {
10701
- return a != null && _typeof(a) === 'object' && a['@@functional/placeholder'] === true;
10702
- }
10703
-
10704
- /**
10705
- * Optimized internal one-arity curry function.
10706
- *
10707
- * @private
10708
- * @category Function
10709
- * @param {Function} fn The function to curry.
10710
- * @return {Function} The curried function.
10711
- */
10712
-
10713
- function _curry1(fn) {
10714
- return function f1(a) {
10715
- if (arguments.length === 0 || _isPlaceholder(a)) {
10716
- return f1;
10717
- } else {
10718
- return fn.apply(this, arguments);
10719
- }
10720
- };
10721
- }
10722
-
10723
- /**
10724
- * Optimized internal two-arity curry function.
10725
- *
10726
- * @private
10727
- * @category Function
10728
- * @param {Function} fn The function to curry.
10729
- * @return {Function} The curried function.
10730
- */
10731
-
10732
- function _curry2(fn) {
10733
- return function f2(a, b) {
10734
- switch (arguments.length) {
10735
- case 0:
10736
- return f2;
10737
- case 1:
10738
- return _isPlaceholder(a) ? f2 : _curry1(function (_b) {
10739
- return fn(a, _b);
10740
- });
10741
- default:
10742
- return _isPlaceholder(a) && _isPlaceholder(b) ? f2 : _isPlaceholder(a) ? _curry1(function (_a) {
10743
- return fn(_a, b);
10744
- }) : _isPlaceholder(b) ? _curry1(function (_b) {
10745
- return fn(a, _b);
10746
- }) : fn(a, b);
10747
- }
10748
- };
10749
- }
10750
-
10751
- function _has(prop, obj) {
10752
- return Object.prototype.hasOwnProperty.call(obj, prop);
10753
- }
10754
-
10755
- var toString = Object.prototype.toString;
10756
- var _isArguments = /*#__PURE__*/
10757
- function () {
10758
- return toString.call(arguments) === '[object Arguments]' ? function _isArguments(x) {
10759
- return toString.call(x) === '[object Arguments]';
10760
- } : function _isArguments(x) {
10761
- return _has('callee', x);
10762
- };
10763
- }();
10764
-
10765
- var hasEnumBug = ! /*#__PURE__*/
10766
- {
10767
- toString: null
10768
- }.propertyIsEnumerable('toString');
10769
- var nonEnumerableProps = ['constructor', 'valueOf', 'isPrototypeOf', 'toString', 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString']; // Safari bug
10770
-
10771
- var hasArgsEnumBug = /*#__PURE__*/
10772
- function () {
10773
-
10774
- return arguments.propertyIsEnumerable('length');
10775
- }();
10776
- var contains = function contains(list, item) {
10777
- var idx = 0;
10778
- while (idx < list.length) {
10779
- if (list[idx] === item) {
10780
- return true;
10781
- }
10782
- idx += 1;
10783
- }
10784
- return false;
10785
- };
10786
- /**
10787
- * Returns a list containing the names of all the enumerable own properties of
10788
- * the supplied object.
10789
- * Note that the order of the output array is not guaranteed to be consistent
10790
- * across different JS platforms.
10791
- *
10792
- * @func
10793
- * @memberOf R
10794
- * @since v0.1.0
10795
- * @category Object
10796
- * @sig {k: v} -> [k]
10797
- * @param {Object} obj The object to extract properties from
10798
- * @return {Array} An array of the object's own properties.
10799
- * @see R.keysIn, R.values
10800
- * @example
10801
- *
10802
- * R.keys({a: 1, b: 2, c: 3}); //=> ['a', 'b', 'c']
10803
- */
10804
-
10805
- var keys$1 = typeof Object.keys === 'function' && !hasArgsEnumBug ? /*#__PURE__*/
10806
- _curry1(function keys(obj) {
10807
- return Object(obj) !== obj ? [] : Object.keys(obj);
10808
- }) : /*#__PURE__*/
10809
- _curry1(function keys(obj) {
10810
- if (Object(obj) !== obj) {
10811
- return [];
10812
- }
10813
- var prop, nIdx;
10814
- var ks = [];
10815
- var checkArgsLength = hasArgsEnumBug && _isArguments(obj);
10816
- for (prop in obj) {
10817
- if (_has(prop, obj) && (!checkArgsLength || prop !== 'length')) {
10818
- ks[ks.length] = prop;
10819
- }
10820
- }
10821
- if (hasEnumBug) {
10822
- nIdx = nonEnumerableProps.length - 1;
10823
- while (nIdx >= 0) {
10824
- prop = nonEnumerableProps[nIdx];
10825
- if (_has(prop, obj) && !contains(ks, prop)) {
10826
- ks[ks.length] = prop;
10827
- }
10828
- nIdx -= 1;
10829
- }
10830
- }
10831
- return ks;
10832
- });
10833
-
10834
- var defineProperty = objectDefineProperty.f;
10835
-
10836
- var proxyAccessor = function (Target, Source, key) {
10837
- key in Target || defineProperty(Target, key, {
10838
- configurable: true,
10839
- get: function () { return Source[key]; },
10840
- set: function (it) { Source[key] = it; }
10841
- });
10842
- };
10843
-
10844
- var getOwnPropertyNames = objectGetOwnPropertyNames.f;
10845
-
10846
-
10847
-
10848
-
10849
-
10850
-
10851
-
10852
-
10853
-
10854
- var enforceInternalState = internalState.enforce;
10855
-
10856
-
10857
-
10858
-
10859
-
10860
- var MATCH = wellKnownSymbol('match');
10861
- var NativeRegExp = global$1.RegExp;
10862
- var RegExpPrototype = NativeRegExp.prototype;
10863
- var SyntaxError = global$1.SyntaxError;
10864
- var exec = functionUncurryThis(RegExpPrototype.exec);
10865
- var charAt = functionUncurryThis(''.charAt);
10866
- var replace = functionUncurryThis(''.replace);
10867
- var stringIndexOf = functionUncurryThis(''.indexOf);
10868
- var stringSlice = functionUncurryThis(''.slice);
10869
- // TODO: Use only proper RegExpIdentifierName
10870
- var IS_NCG = /^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/;
10871
- var re1 = /a/g;
10872
- var re2 = /a/g;
10873
-
10874
- // "new" should create a new object, old webkit bug
10875
- var CORRECT_NEW = new NativeRegExp(re1) !== re1;
10876
-
10877
- var MISSED_STICKY = regexpStickyHelpers.MISSED_STICKY;
10878
- var UNSUPPORTED_Y = regexpStickyHelpers.UNSUPPORTED_Y;
10879
-
10880
- var BASE_FORCED = descriptors &&
10881
- (!CORRECT_NEW || MISSED_STICKY || regexpUnsupportedDotAll || regexpUnsupportedNcg || fails(function () {
10882
- re2[MATCH] = false;
10883
- // RegExp constructor can alter flags and IsRegExp works correct with @@match
10884
- return NativeRegExp(re1) !== re1 || NativeRegExp(re2) === re2 || String(NativeRegExp(re1, 'i')) !== '/a/i';
10885
- }));
10886
-
10887
- var handleDotAll = function (string) {
10888
- var length = string.length;
10889
- var index = 0;
10890
- var result = '';
10891
- var brackets = false;
10892
- var chr;
10893
- for (; index <= length; index++) {
10894
- chr = charAt(string, index);
10895
- if (chr === '\\') {
10896
- result += chr + charAt(string, ++index);
10897
- continue;
10898
- }
10899
- if (!brackets && chr === '.') {
10900
- result += '[\\s\\S]';
10901
- } else {
10902
- if (chr === '[') {
10903
- brackets = true;
10904
- } else if (chr === ']') {
10905
- brackets = false;
10906
- } result += chr;
10907
- }
10908
- } return result;
10909
- };
10910
-
10911
- var handleNCG = function (string) {
10912
- var length = string.length;
10913
- var index = 0;
10914
- var result = '';
10915
- var named = [];
10916
- var names = objectCreate(null);
10917
- var brackets = false;
10918
- var ncg = false;
10919
- var groupid = 0;
10920
- var groupname = '';
10921
- var chr;
10922
- for (; index <= length; index++) {
10923
- chr = charAt(string, index);
10924
- if (chr === '\\') {
10925
- chr += charAt(string, ++index);
10926
- } else if (chr === ']') {
10927
- brackets = false;
10928
- } else if (!brackets) switch (true) {
10929
- case chr === '[':
10930
- brackets = true;
10931
- break;
10932
- case chr === '(':
10933
- if (exec(IS_NCG, stringSlice(string, index + 1))) {
10934
- index += 2;
10935
- ncg = true;
10936
- }
10937
- result += chr;
10938
- groupid++;
10939
- continue;
10940
- case chr === '>' && ncg:
10941
- if (groupname === '' || hasOwnProperty_1(names, groupname)) {
10942
- throw new SyntaxError('Invalid capture group name');
10943
- }
10944
- names[groupname] = true;
10945
- named[named.length] = [groupname, groupid];
10946
- ncg = false;
10947
- groupname = '';
10948
- continue;
10949
- }
10950
- if (ncg) groupname += chr;
10951
- else result += chr;
10952
- } return [result, named];
10953
- };
10954
-
10955
- // `RegExp` constructor
10956
- // https://tc39.es/ecma262/#sec-regexp-constructor
10957
- if (isForced_1('RegExp', BASE_FORCED)) {
10958
- var RegExpWrapper = function RegExp(pattern, flags) {
10959
- var thisIsRegExp = objectIsPrototypeOf(RegExpPrototype, this);
10960
- var patternIsRegExp = isRegexp(pattern);
10961
- var flagsAreUndefined = flags === undefined;
10962
- var groups = [];
10963
- var rawPattern = pattern;
10964
- var rawFlags, dotAll, sticky, handled, result, state;
10965
-
10966
- if (!thisIsRegExp && patternIsRegExp && flagsAreUndefined && pattern.constructor === RegExpWrapper) {
10967
- return pattern;
10968
- }
10969
-
10970
- if (patternIsRegExp || objectIsPrototypeOf(RegExpPrototype, pattern)) {
10971
- pattern = pattern.source;
10972
- if (flagsAreUndefined) flags = regexpGetFlags(rawPattern);
10973
- }
10974
-
10975
- pattern = pattern === undefined ? '' : toString$2(pattern);
10976
- flags = flags === undefined ? '' : toString$2(flags);
10977
- rawPattern = pattern;
10978
-
10979
- if (regexpUnsupportedDotAll && 'dotAll' in re1) {
10980
- dotAll = !!flags && stringIndexOf(flags, 's') > -1;
10981
- if (dotAll) flags = replace(flags, /s/g, '');
10982
- }
10983
-
10984
- rawFlags = flags;
10985
-
10986
- if (MISSED_STICKY && 'sticky' in re1) {
10987
- sticky = !!flags && stringIndexOf(flags, 'y') > -1;
10988
- if (sticky && UNSUPPORTED_Y) flags = replace(flags, /y/g, '');
10989
- }
10990
-
10991
- if (regexpUnsupportedNcg) {
10992
- handled = handleNCG(pattern);
10993
- pattern = handled[0];
10994
- groups = handled[1];
10995
- }
10996
-
10997
- result = inheritIfRequired(NativeRegExp(pattern, flags), thisIsRegExp ? this : RegExpPrototype, RegExpWrapper);
10998
-
10999
- if (dotAll || sticky || groups.length) {
11000
- state = enforceInternalState(result);
11001
- if (dotAll) {
11002
- state.dotAll = true;
11003
- state.raw = RegExpWrapper(handleDotAll(pattern), rawFlags);
11004
- }
11005
- if (sticky) state.sticky = true;
11006
- if (groups.length) state.groups = groups;
11007
- }
11008
-
11009
- if (pattern !== rawPattern) try {
11010
- // fails in old engines, but we have no alternatives for unsupported regex syntax
11011
- createNonEnumerableProperty(result, 'source', rawPattern === '' ? '(?:)' : rawPattern);
11012
- } catch (error) { /* empty */ }
11013
-
11014
- return result;
11015
- };
11016
-
11017
- for (var keys = getOwnPropertyNames(NativeRegExp), index$1 = 0; keys.length > index$1;) {
11018
- proxyAccessor(RegExpWrapper, NativeRegExp, keys[index$1++]);
11019
- }
11020
-
11021
- RegExpPrototype.constructor = RegExpWrapper;
11022
- RegExpWrapper.prototype = RegExpPrototype;
11023
- defineBuiltIn(global$1, 'RegExp', RegExpWrapper, { constructor: true });
11024
- }
11025
-
11026
- // https://tc39.es/ecma262/#sec-get-regexp-@@species
11027
- setSpecies('RegExp');
11028
-
11029
- function _cloneRegExp(pattern) {
11030
- return new RegExp(pattern.source, (pattern.global ? 'g' : '') + (pattern.ignoreCase ? 'i' : '') + (pattern.multiline ? 'm' : '') + (pattern.sticky ? 'y' : '') + (pattern.unicode ? 'u' : ''));
11031
- }
11032
-
11033
- /**
11034
- * Gives a single-word string description of the (native) type of a value,
11035
- * returning such answers as 'Object', 'Number', 'Array', or 'Null'. Does not
11036
- * attempt to distinguish user Object types any further, reporting them all as
11037
- * 'Object'.
11038
- *
11039
- * @func
11040
- * @memberOf R
11041
- * @since v0.8.0
11042
- * @category Type
11043
- * @sig (* -> {*}) -> String
11044
- * @param {*} val The value to test
11045
- * @return {String}
11046
- * @example
11047
- *
11048
- * R.type({}); //=> "Object"
11049
- * R.type(1); //=> "Number"
11050
- * R.type(false); //=> "Boolean"
11051
- * R.type('s'); //=> "String"
11052
- * R.type(null); //=> "Null"
11053
- * R.type([]); //=> "Array"
11054
- * R.type(/[A-z]/); //=> "RegExp"
11055
- * R.type(() => {}); //=> "Function"
11056
- * R.type(undefined); //=> "Undefined"
11057
- */
11058
-
11059
- var type = /*#__PURE__*/
11060
- _curry1(function type(val) {
11061
- return val === null ? 'Null' : val === undefined ? 'Undefined' : Object.prototype.toString.call(val).slice(8, -1);
11062
- });
11063
-
11064
- /**
11065
- * Copies an object.
11066
- *
11067
- * @private
11068
- * @param {*} value The value to be copied
11069
- * @param {Array} refFrom Array containing the source references
11070
- * @param {Array} refTo Array containing the copied source references
11071
- * @param {Boolean} deep Whether or not to perform deep cloning.
11072
- * @return {*} The copied value.
11073
- */
11074
-
11075
- function _clone(value, refFrom, refTo, deep) {
11076
- var copy = function copy(copiedValue) {
11077
- var len = refFrom.length;
11078
- var idx = 0;
11079
- while (idx < len) {
11080
- if (value === refFrom[idx]) {
11081
- return refTo[idx];
11082
- }
11083
- idx += 1;
11084
- }
11085
- refFrom[idx + 1] = value;
11086
- refTo[idx + 1] = copiedValue;
11087
- for (var key in value) {
11088
- copiedValue[key] = deep ? _clone(value[key], refFrom, refTo, true) : value[key];
11089
- }
11090
- return copiedValue;
11091
- };
11092
- switch (type(value)) {
11093
- case 'Object':
11094
- return copy({});
11095
- case 'Array':
11096
- return copy([]);
11097
- case 'Date':
11098
- return new Date(value.valueOf());
11099
- case 'RegExp':
11100
- return _cloneRegExp(value);
11101
- default:
11102
- return value;
11103
- }
11104
- }
11105
-
11106
- /**
11107
- * Creates a deep copy of the value which may contain (nested) `Array`s and
11108
- * `Object`s, `Number`s, `String`s, `Boolean`s and `Date`s. `Function`s are
11109
- * assigned by reference rather than copied
11110
- *
11111
- * Dispatches to a `clone` method if present.
11112
- *
11113
- * @func
11114
- * @memberOf R
11115
- * @since v0.1.0
11116
- * @category Object
11117
- * @sig {*} -> {*}
11118
- * @param {*} value The object or array to clone
11119
- * @return {*} A deeply cloned copy of `val`
11120
- * @example
11121
- *
11122
- * const objects = [{}, {}, {}];
11123
- * const objectsClone = R.clone(objects);
11124
- * objects === objectsClone; //=> false
11125
- * objects[0] === objectsClone[0]; //=> false
11126
- */
11127
-
11128
- var clone = /*#__PURE__*/
11129
- _curry1(function clone(value) {
11130
- return value != null && typeof value.clone === 'function' ? value.clone() : _clone(value, [], [], true);
11131
- });
11132
-
11133
- function _arrayFromIterator(iter) {
11134
- var list = [];
11135
- var next;
11136
- while (!(next = iter.next()).done) {
11137
- list.push(next.value);
11138
- }
11139
- return list;
11140
- }
11141
-
11142
- function _includesWith(pred, x, list) {
11143
- var idx = 0;
11144
- var len = list.length;
11145
- while (idx < len) {
11146
- if (pred(x, list[idx])) {
11147
- return true;
11148
- }
11149
- idx += 1;
11150
- }
11151
- return false;
11152
- }
11153
-
11154
- function _functionName(f) {
11155
- // String(x => x) evaluates to "x => x", so the pattern may not match.
11156
- var match = String(f).match(/^function (\w*)/);
11157
- return match == null ? '' : match[1];
11158
- }
11159
-
11160
- // `SameValue` abstract operation
11161
- // https://tc39.es/ecma262/#sec-samevalue
11162
- // eslint-disable-next-line es/no-object-is -- safe
11163
- var sameValue = Object.is || function is(x, y) {
11164
- // eslint-disable-next-line no-self-compare -- NaN check
11165
- return x === y ? x !== 0 || 1 / x === 1 / y : x !== x && y !== y;
11166
- };
11167
-
11168
- // `Object.is` method
11169
- // https://tc39.es/ecma262/#sec-object.is
11170
- _export({ target: 'Object', stat: true }, {
11171
- is: sameValue
11172
- });
11173
-
11174
- // Based on https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
11175
- function _objectIs(a, b) {
11176
- // SameValue algorithm
11177
- if (a === b) {
11178
- // Steps 1-5, 7-10
11179
- // Steps 6.b-6.e: +0 != -0
11180
- return a !== 0 || 1 / a === 1 / b;
11181
- } else {
11182
- // Step 6.a: NaN == NaN
11183
- return a !== a && b !== b;
11184
- }
11185
- }
11186
- var _objectIs$1 = typeof Object.is === 'function' ? Object.is : _objectIs;
11187
-
11188
- /**
11189
- * private _uniqContentEquals function.
11190
- * That function is checking equality of 2 iterator contents with 2 assumptions
11191
- * - iterators lengths are the same
11192
- * - iterators values are unique
11193
- *
11194
- * false-positive result will be returned for comparision of, e.g.
11195
- * - [1,2,3] and [1,2,3,4]
11196
- * - [1,1,1] and [1,2,3]
11197
- * */
11198
-
11199
- function _uniqContentEquals(aIterator, bIterator, stackA, stackB) {
11200
- var a = _arrayFromIterator(aIterator);
11201
- var b = _arrayFromIterator(bIterator);
11202
- function eq(_a, _b) {
11203
- return _equals(_a, _b, stackA.slice(), stackB.slice());
11204
- } // if *a* array contains any element that is not included in *b*
11205
-
11206
- return !_includesWith(function (b, aItem) {
11207
- return !_includesWith(eq, aItem, b);
11208
- }, b, a);
11209
- }
11210
- function _equals(a, b, stackA, stackB) {
11211
- if (_objectIs$1(a, b)) {
11212
- return true;
11213
- }
11214
- var typeA = type(a);
11215
- if (typeA !== type(b)) {
11216
- return false;
11217
- }
11218
- if (a == null || b == null) {
11219
- return false;
11220
- }
11221
- if (typeof a['fantasy-land/equals'] === 'function' || typeof b['fantasy-land/equals'] === 'function') {
11222
- return typeof a['fantasy-land/equals'] === 'function' && a['fantasy-land/equals'](b) && typeof b['fantasy-land/equals'] === 'function' && b['fantasy-land/equals'](a);
11223
- }
11224
- if (typeof a.equals === 'function' || typeof b.equals === 'function') {
11225
- return typeof a.equals === 'function' && a.equals(b) && typeof b.equals === 'function' && b.equals(a);
11226
- }
11227
- switch (typeA) {
11228
- case 'Arguments':
11229
- case 'Array':
11230
- case 'Object':
11231
- if (typeof a.constructor === 'function' && _functionName(a.constructor) === 'Promise') {
11232
- return a === b;
11233
- }
11234
- break;
11235
- case 'Boolean':
11236
- case 'Number':
11237
- case 'String':
11238
- if (!(_typeof(a) === _typeof(b) && _objectIs$1(a.valueOf(), b.valueOf()))) {
11239
- return false;
11240
- }
11241
- break;
11242
- case 'Date':
11243
- if (!_objectIs$1(a.valueOf(), b.valueOf())) {
11244
- return false;
11245
- }
11246
- break;
11247
- case 'Error':
11248
- return a.name === b.name && a.message === b.message;
11249
- case 'RegExp':
11250
- if (!(a.source === b.source && a.global === b.global && a.ignoreCase === b.ignoreCase && a.multiline === b.multiline && a.sticky === b.sticky && a.unicode === b.unicode)) {
11251
- return false;
11252
- }
11253
- break;
11254
- }
11255
- var idx = stackA.length - 1;
11256
- while (idx >= 0) {
11257
- if (stackA[idx] === a) {
11258
- return stackB[idx] === b;
11259
- }
11260
- idx -= 1;
11261
- }
11262
- switch (typeA) {
11263
- case 'Map':
11264
- if (a.size !== b.size) {
11265
- return false;
11266
- }
11267
- return _uniqContentEquals(a.entries(), b.entries(), stackA.concat([a]), stackB.concat([b]));
11268
- case 'Set':
11269
- if (a.size !== b.size) {
11270
- return false;
11271
- }
11272
- return _uniqContentEquals(a.values(), b.values(), stackA.concat([a]), stackB.concat([b]));
11273
- case 'Arguments':
11274
- case 'Array':
11275
- case 'Object':
11276
- case 'Boolean':
11277
- case 'Number':
11278
- case 'String':
11279
- case 'Date':
11280
- case 'Error':
11281
- case 'RegExp':
11282
- case 'Int8Array':
11283
- case 'Uint8Array':
11284
- case 'Uint8ClampedArray':
11285
- case 'Int16Array':
11286
- case 'Uint16Array':
11287
- case 'Int32Array':
11288
- case 'Uint32Array':
11289
- case 'Float32Array':
11290
- case 'Float64Array':
11291
- case 'ArrayBuffer':
11292
- break;
11293
- default:
11294
- // Values of other types are only equal if identical.
11295
- return false;
11296
- }
11297
- var keysA = keys$1(a);
11298
- if (keysA.length !== keys$1(b).length) {
11299
- return false;
11300
- }
11301
- var extendedStackA = stackA.concat([a]);
11302
- var extendedStackB = stackB.concat([b]);
11303
- idx = keysA.length - 1;
11304
- while (idx >= 0) {
11305
- var key = keysA[idx];
11306
- if (!(_has(key, b) && _equals(b[key], a[key], extendedStackA, extendedStackB))) {
11307
- return false;
11308
- }
11309
- idx -= 1;
11310
- }
11311
- return true;
11312
- }
11313
-
11314
- /**
11315
- * Returns `true` if its arguments are equivalent, `false` otherwise. Handles
11316
- * cyclical data structures.
11317
- *
11318
- * Dispatches symmetrically to the `equals` methods of both arguments, if
11319
- * present.
11320
- *
11321
- * @func
11322
- * @memberOf R
11323
- * @since v0.15.0
11324
- * @category Relation
11325
- * @sig a -> b -> Boolean
11326
- * @param {*} a
11327
- * @param {*} b
11328
- * @return {Boolean}
11329
- * @example
11330
- *
11331
- * R.equals(1, 1); //=> true
11332
- * R.equals(1, '1'); //=> false
11333
- * R.equals([1, 2, 3], [1, 2, 3]); //=> true
11334
- *
11335
- * const a = {}; a.v = a;
11336
- * const b = {}; b.v = b;
11337
- * R.equals(a, b); //=> true
11338
- */
11339
-
11340
- var equals = /*#__PURE__*/
11341
- _curry2(function equals(a, b) {
11342
- return _equals(a, b, [], []);
11343
- });
11344
-
11345
- /**
11346
- * Creates a new object from a list key-value pairs. If a key appears in
11347
- * multiple pairs, the rightmost pair is included in the object.
11348
- *
11349
- * @func
11350
- * @memberOf R
11351
- * @since v0.3.0
11352
- * @category List
11353
- * @sig [[k,v]] -> {k: v}
11354
- * @param {Array} pairs An array of two-element arrays that will be the keys and values of the output object.
11355
- * @return {Object} The object made by pairing up `keys` and `values`.
11356
- * @see R.toPairs, R.pair
11357
- * @example
11358
- *
11359
- * R.fromPairs([['a', 1], ['b', 2], ['c', 3]]); //=> {a: 1, b: 2, c: 3}
11360
- */
11361
-
11362
- var fromPairs = /*#__PURE__*/
11363
- _curry1(function fromPairs(pairs) {
11364
- var result = {};
11365
- var idx = 0;
11366
- while (idx < pairs.length) {
11367
- result[pairs[idx][0]] = pairs[idx][1];
11368
- idx += 1;
11369
- }
11370
- return result;
11371
- });
11372
-
11373
- /**
11374
- * Converts an object into an array of key, value arrays. Only the object's
11375
- * own properties are used.
11376
- * Note that the order of the output array is not guaranteed to be consistent
11377
- * across different JS platforms.
11378
- *
11379
- * @func
11380
- * @memberOf R
11381
- * @since v0.4.0
11382
- * @category Object
11383
- * @sig {String: *} -> [[String,*]]
11384
- * @param {Object} obj The object to extract from
11385
- * @return {Array} An array of key, value arrays from the object's own properties.
11386
- * @see R.fromPairs
11387
- * @example
11388
- *
11389
- * R.toPairs({a: 1, b: 2, c: 3}); //=> [['a', 1], ['b', 2], ['c', 3]]
11390
- */
11391
-
11392
- var toPairs = /*#__PURE__*/
11393
- _curry1(function toPairs(obj) {
11394
- var pairs = [];
11395
- for (var prop in obj) {
11396
- if (_has(prop, obj)) {
11397
- pairs[pairs.length] = [prop, obj[prop]];
11398
- }
11399
- }
11400
- return pairs;
11401
- });
11402
-
11403
10733
  function ownKeys$1(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
11404
10734
  function _objectSpread$1(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$1(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$1(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
11405
10735
  var QueryRenderer = {