@dereekb/util 10.1.6 → 10.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fetch/CHANGELOG.md +8 -0
- package/fetch/package.json +1 -1
- package/index.cjs.js +429 -399
- package/index.esm.js +506 -466
- package/package.json +1 -1
- package/src/lib/map/map.key.d.ts +3 -1
- package/src/lib/value/indexed.d.ts +14 -0
- package/src/lib/value/label.d.ts +8 -0
- package/test/CHANGELOG.md +8 -0
- package/test/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -1546,244 +1546,20 @@ for (var COLLECTION_NAME in DOMIterables) {
|
|
|
1546
1546
|
|
|
1547
1547
|
handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
|
|
1548
1548
|
|
|
1549
|
-
var classof$7 = classofRaw$2;
|
|
1550
|
-
|
|
1551
|
-
// `IsArray` abstract operation
|
|
1552
|
-
// https://tc39.es/ecma262/#sec-isarray
|
|
1553
|
-
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
1554
|
-
var isArray$3 = Array.isArray || function isArray(argument) {
|
|
1555
|
-
return classof$7(argument) === 'Array';
|
|
1556
|
-
};
|
|
1557
|
-
|
|
1558
|
-
var $TypeError$a = TypeError;
|
|
1559
|
-
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
|
|
1560
|
-
|
|
1561
|
-
var doesNotExceedSafeInteger$1 = function (it) {
|
|
1562
|
-
if (it > MAX_SAFE_INTEGER) throw $TypeError$a('Maximum allowed index exceeded');
|
|
1563
|
-
return it;
|
|
1564
|
-
};
|
|
1565
|
-
|
|
1566
|
-
var classofRaw$1 = classofRaw$2;
|
|
1567
|
-
var uncurryThis$i = functionUncurryThis;
|
|
1568
|
-
|
|
1569
|
-
var functionUncurryThisClause = function (fn) {
|
|
1570
|
-
// Nashorn bug:
|
|
1571
|
-
// https://github.com/zloirock/core-js/issues/1128
|
|
1572
|
-
// https://github.com/zloirock/core-js/issues/1130
|
|
1573
|
-
if (classofRaw$1(fn) === 'Function') return uncurryThis$i(fn);
|
|
1574
|
-
};
|
|
1575
|
-
|
|
1576
|
-
var uncurryThis$h = functionUncurryThisClause;
|
|
1577
1549
|
var aCallable$7 = aCallable$a;
|
|
1578
|
-
var NATIVE_BIND$1 = functionBindNative;
|
|
1579
|
-
|
|
1580
|
-
var bind$5 = uncurryThis$h(uncurryThis$h.bind);
|
|
1581
|
-
|
|
1582
|
-
// optional / simple context binding
|
|
1583
|
-
var functionBindContext = function (fn, that) {
|
|
1584
|
-
aCallable$7(fn);
|
|
1585
|
-
return that === undefined ? fn : NATIVE_BIND$1 ? bind$5(fn, that) : function (/* ...args */) {
|
|
1586
|
-
return fn.apply(that, arguments);
|
|
1587
|
-
};
|
|
1588
|
-
};
|
|
1589
|
-
|
|
1590
|
-
var isArray$2 = isArray$3;
|
|
1591
|
-
var lengthOfArrayLike$4 = lengthOfArrayLike$6;
|
|
1592
|
-
var doesNotExceedSafeInteger = doesNotExceedSafeInteger$1;
|
|
1593
|
-
var bind$4 = functionBindContext;
|
|
1594
|
-
|
|
1595
|
-
// `FlattenIntoArray` abstract operation
|
|
1596
|
-
// https://tc39.github.io/proposal-flatMap/#sec-FlattenIntoArray
|
|
1597
|
-
var flattenIntoArray$1 = function (target, original, source, sourceLen, start, depth, mapper, thisArg) {
|
|
1598
|
-
var targetIndex = start;
|
|
1599
|
-
var sourceIndex = 0;
|
|
1600
|
-
var mapFn = mapper ? bind$4(mapper, thisArg) : false;
|
|
1601
|
-
var element, elementLen;
|
|
1602
|
-
|
|
1603
|
-
while (sourceIndex < sourceLen) {
|
|
1604
|
-
if (sourceIndex in source) {
|
|
1605
|
-
element = mapFn ? mapFn(source[sourceIndex], sourceIndex, original) : source[sourceIndex];
|
|
1606
|
-
|
|
1607
|
-
if (depth > 0 && isArray$2(element)) {
|
|
1608
|
-
elementLen = lengthOfArrayLike$4(element);
|
|
1609
|
-
targetIndex = flattenIntoArray$1(target, original, element, elementLen, targetIndex, depth - 1) - 1;
|
|
1610
|
-
} else {
|
|
1611
|
-
doesNotExceedSafeInteger(targetIndex + 1);
|
|
1612
|
-
target[targetIndex] = element;
|
|
1613
|
-
}
|
|
1614
|
-
|
|
1615
|
-
targetIndex++;
|
|
1616
|
-
}
|
|
1617
|
-
sourceIndex++;
|
|
1618
|
-
}
|
|
1619
|
-
return targetIndex;
|
|
1620
|
-
};
|
|
1621
|
-
|
|
1622
|
-
var flattenIntoArray_1 = flattenIntoArray$1;
|
|
1623
|
-
|
|
1624
|
-
var wellKnownSymbol$d = wellKnownSymbol$k;
|
|
1625
|
-
|
|
1626
|
-
var TO_STRING_TAG$1 = wellKnownSymbol$d('toStringTag');
|
|
1627
|
-
var test$2 = {};
|
|
1628
|
-
|
|
1629
|
-
test$2[TO_STRING_TAG$1] = 'z';
|
|
1630
|
-
|
|
1631
|
-
var toStringTagSupport = String(test$2) === '[object z]';
|
|
1632
|
-
|
|
1633
|
-
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1634
|
-
var isCallable$9 = isCallable$n;
|
|
1635
|
-
var classofRaw = classofRaw$2;
|
|
1636
|
-
var wellKnownSymbol$c = wellKnownSymbol$k;
|
|
1637
|
-
|
|
1638
|
-
var TO_STRING_TAG = wellKnownSymbol$c('toStringTag');
|
|
1639
|
-
var $Object = Object;
|
|
1640
|
-
|
|
1641
|
-
// ES3 wrong here
|
|
1642
|
-
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
|
|
1643
|
-
|
|
1644
|
-
// fallback for IE11 Script Access Denied error
|
|
1645
|
-
var tryGet = function (it, key) {
|
|
1646
|
-
try {
|
|
1647
|
-
return it[key];
|
|
1648
|
-
} catch (error) { /* empty */ }
|
|
1649
|
-
};
|
|
1650
|
-
|
|
1651
|
-
// getting tag from ES6+ `Object.prototype.toString`
|
|
1652
|
-
var classof$6 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
1653
|
-
var O, tag, result;
|
|
1654
|
-
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
1655
|
-
// @@toStringTag case
|
|
1656
|
-
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
1657
|
-
// builtinTag case
|
|
1658
|
-
: CORRECT_ARGUMENTS ? classofRaw(O)
|
|
1659
|
-
// ES3 arguments fallback
|
|
1660
|
-
: (result = classofRaw(O)) === 'Object' && isCallable$9(O.callee) ? 'Arguments' : result;
|
|
1661
|
-
};
|
|
1662
|
-
|
|
1663
|
-
var uncurryThis$g = functionUncurryThis;
|
|
1664
|
-
var fails$e = fails$p;
|
|
1665
|
-
var isCallable$8 = isCallable$n;
|
|
1666
|
-
var classof$5 = classof$6;
|
|
1667
|
-
var getBuiltIn$3 = getBuiltIn$7;
|
|
1668
|
-
var inspectSource$1 = inspectSource$3;
|
|
1669
|
-
|
|
1670
|
-
var noop = function () { /* empty */ };
|
|
1671
|
-
var construct = getBuiltIn$3('Reflect', 'construct');
|
|
1672
|
-
var constructorRegExp = /^\s*(?:class|function)\b/;
|
|
1673
|
-
var exec$2 = uncurryThis$g(constructorRegExp.exec);
|
|
1674
|
-
var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
|
|
1675
|
-
|
|
1676
|
-
var isConstructorModern = function isConstructor(argument) {
|
|
1677
|
-
if (!isCallable$8(argument)) return false;
|
|
1678
|
-
try {
|
|
1679
|
-
construct(noop, [], argument);
|
|
1680
|
-
return true;
|
|
1681
|
-
} catch (error) {
|
|
1682
|
-
return false;
|
|
1683
|
-
}
|
|
1684
|
-
};
|
|
1685
|
-
|
|
1686
|
-
var isConstructorLegacy = function isConstructor(argument) {
|
|
1687
|
-
if (!isCallable$8(argument)) return false;
|
|
1688
|
-
switch (classof$5(argument)) {
|
|
1689
|
-
case 'AsyncFunction':
|
|
1690
|
-
case 'GeneratorFunction':
|
|
1691
|
-
case 'AsyncGeneratorFunction': return false;
|
|
1692
|
-
}
|
|
1693
|
-
try {
|
|
1694
|
-
// we can't check .prototype since constructors produced by .bind haven't it
|
|
1695
|
-
// `Function#toString` throws on some built-it function in some legacy engines
|
|
1696
|
-
// (for example, `DOMQuad` and similar in FF41-)
|
|
1697
|
-
return INCORRECT_TO_STRING || !!exec$2(constructorRegExp, inspectSource$1(argument));
|
|
1698
|
-
} catch (error) {
|
|
1699
|
-
return true;
|
|
1700
|
-
}
|
|
1701
|
-
};
|
|
1702
|
-
|
|
1703
|
-
isConstructorLegacy.sham = true;
|
|
1704
|
-
|
|
1705
|
-
// `IsConstructor` abstract operation
|
|
1706
|
-
// https://tc39.es/ecma262/#sec-isconstructor
|
|
1707
|
-
var isConstructor$2 = !construct || fails$e(function () {
|
|
1708
|
-
var called;
|
|
1709
|
-
return isConstructorModern(isConstructorModern.call)
|
|
1710
|
-
|| !isConstructorModern(Object)
|
|
1711
|
-
|| !isConstructorModern(function () { called = true; })
|
|
1712
|
-
|| called;
|
|
1713
|
-
}) ? isConstructorLegacy : isConstructorModern;
|
|
1714
|
-
|
|
1715
|
-
var isArray$1 = isArray$3;
|
|
1716
|
-
var isConstructor$1 = isConstructor$2;
|
|
1717
|
-
var isObject$4 = isObject$c;
|
|
1718
|
-
var wellKnownSymbol$b = wellKnownSymbol$k;
|
|
1719
|
-
|
|
1720
|
-
var SPECIES$4 = wellKnownSymbol$b('species');
|
|
1721
|
-
var $Array = Array;
|
|
1722
|
-
|
|
1723
|
-
// a part of `ArraySpeciesCreate` abstract operation
|
|
1724
|
-
// https://tc39.es/ecma262/#sec-arrayspeciescreate
|
|
1725
|
-
var arraySpeciesConstructor$1 = function (originalArray) {
|
|
1726
|
-
var C;
|
|
1727
|
-
if (isArray$1(originalArray)) {
|
|
1728
|
-
C = originalArray.constructor;
|
|
1729
|
-
// cross-realm fallback
|
|
1730
|
-
if (isConstructor$1(C) && (C === $Array || isArray$1(C.prototype))) C = undefined;
|
|
1731
|
-
else if (isObject$4(C)) {
|
|
1732
|
-
C = C[SPECIES$4];
|
|
1733
|
-
if (C === null) C = undefined;
|
|
1734
|
-
}
|
|
1735
|
-
} return C === undefined ? $Array : C;
|
|
1736
|
-
};
|
|
1737
|
-
|
|
1738
|
-
var arraySpeciesConstructor = arraySpeciesConstructor$1;
|
|
1739
|
-
|
|
1740
|
-
// `ArraySpeciesCreate` abstract operation
|
|
1741
|
-
// https://tc39.es/ecma262/#sec-arrayspeciescreate
|
|
1742
|
-
var arraySpeciesCreate$1 = function (originalArray, length) {
|
|
1743
|
-
return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
|
|
1744
|
-
};
|
|
1745
|
-
|
|
1746
|
-
var $$g = _export;
|
|
1747
|
-
var flattenIntoArray = flattenIntoArray_1;
|
|
1748
1550
|
var toObject$4 = toObject$7;
|
|
1749
|
-
var lengthOfArrayLike$3 = lengthOfArrayLike$6;
|
|
1750
|
-
var toIntegerOrInfinity$4 = toIntegerOrInfinity$7;
|
|
1751
|
-
var arraySpeciesCreate = arraySpeciesCreate$1;
|
|
1752
|
-
|
|
1753
|
-
// `Array.prototype.flat` method
|
|
1754
|
-
// https://tc39.es/ecma262/#sec-array.prototype.flat
|
|
1755
|
-
$$g({ target: 'Array', proto: true }, {
|
|
1756
|
-
flat: function flat(/* depthArg = 1 */) {
|
|
1757
|
-
var depthArg = arguments.length ? arguments[0] : undefined;
|
|
1758
|
-
var O = toObject$4(this);
|
|
1759
|
-
var sourceLen = lengthOfArrayLike$3(O);
|
|
1760
|
-
var A = arraySpeciesCreate(O, 0);
|
|
1761
|
-
A.length = flattenIntoArray(A, O, O, sourceLen, 0, depthArg === undefined ? 1 : toIntegerOrInfinity$4(depthArg));
|
|
1762
|
-
return A;
|
|
1763
|
-
}
|
|
1764
|
-
});
|
|
1765
|
-
|
|
1766
|
-
// this method was added to unscopables after implementation
|
|
1767
|
-
// in popular engines, so it's moved to a separate module
|
|
1768
|
-
var addToUnscopables = addToUnscopables$2;
|
|
1769
|
-
|
|
1770
|
-
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
1771
|
-
addToUnscopables('flat');
|
|
1772
|
-
|
|
1773
|
-
var aCallable$6 = aCallable$a;
|
|
1774
|
-
var toObject$3 = toObject$7;
|
|
1775
1551
|
var IndexedObject$1 = indexedObject;
|
|
1776
|
-
var lengthOfArrayLike$
|
|
1552
|
+
var lengthOfArrayLike$4 = lengthOfArrayLike$6;
|
|
1777
1553
|
|
|
1778
|
-
var $TypeError$
|
|
1554
|
+
var $TypeError$a = TypeError;
|
|
1779
1555
|
|
|
1780
1556
|
// `Array.prototype.{ reduce, reduceRight }` methods implementation
|
|
1781
1557
|
var createMethod$2 = function (IS_RIGHT) {
|
|
1782
1558
|
return function (that, callbackfn, argumentsLength, memo) {
|
|
1783
|
-
var O = toObject$
|
|
1559
|
+
var O = toObject$4(that);
|
|
1784
1560
|
var self = IndexedObject$1(O);
|
|
1785
|
-
var length = lengthOfArrayLike$
|
|
1786
|
-
aCallable$
|
|
1561
|
+
var length = lengthOfArrayLike$4(O);
|
|
1562
|
+
aCallable$7(callbackfn);
|
|
1787
1563
|
var index = IS_RIGHT ? length - 1 : 0;
|
|
1788
1564
|
var i = IS_RIGHT ? -1 : 1;
|
|
1789
1565
|
if (argumentsLength < 2) while (true) {
|
|
@@ -1794,7 +1570,7 @@ var createMethod$2 = function (IS_RIGHT) {
|
|
|
1794
1570
|
}
|
|
1795
1571
|
index += i;
|
|
1796
1572
|
if (IS_RIGHT ? index < 0 : length <= index) {
|
|
1797
|
-
throw new $TypeError$
|
|
1573
|
+
throw new $TypeError$a('Reduce of empty array with no initial value');
|
|
1798
1574
|
}
|
|
1799
1575
|
}
|
|
1800
1576
|
for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) {
|
|
@@ -1813,22 +1589,22 @@ var arrayReduce = {
|
|
|
1813
1589
|
right: createMethod$2(true)
|
|
1814
1590
|
};
|
|
1815
1591
|
|
|
1816
|
-
var fails$
|
|
1592
|
+
var fails$e = fails$p;
|
|
1817
1593
|
|
|
1818
1594
|
var arrayMethodIsStrict$2 = function (METHOD_NAME, argument) {
|
|
1819
1595
|
var method = [][METHOD_NAME];
|
|
1820
|
-
return !!method && fails$
|
|
1596
|
+
return !!method && fails$e(function () {
|
|
1821
1597
|
// eslint-disable-next-line no-useless-call -- required for testing
|
|
1822
1598
|
method.call(null, argument || function () { return 1; }, 1);
|
|
1823
1599
|
});
|
|
1824
1600
|
};
|
|
1825
1601
|
|
|
1826
1602
|
var global$c = global$o;
|
|
1827
|
-
var classof$
|
|
1603
|
+
var classof$7 = classofRaw$2;
|
|
1828
1604
|
|
|
1829
|
-
var engineIsNode = classof$
|
|
1605
|
+
var engineIsNode = classof$7(global$c.process) === 'process';
|
|
1830
1606
|
|
|
1831
|
-
var $$
|
|
1607
|
+
var $$g = _export;
|
|
1832
1608
|
var $reduce = arrayReduce.left;
|
|
1833
1609
|
var arrayMethodIsStrict$1 = arrayMethodIsStrict$2;
|
|
1834
1610
|
var CHROME_VERSION = engineV8Version;
|
|
@@ -1841,7 +1617,7 @@ var FORCED$2 = CHROME_BUG || !arrayMethodIsStrict$1('reduce');
|
|
|
1841
1617
|
|
|
1842
1618
|
// `Array.prototype.reduce` method
|
|
1843
1619
|
// https://tc39.es/ecma262/#sec-array.prototype.reduce
|
|
1844
|
-
$$
|
|
1620
|
+
$$g({ target: 'Array', proto: true, forced: FORCED$2 }, {
|
|
1845
1621
|
reduce: function reduce(callbackfn /* , initialValue */) {
|
|
1846
1622
|
var length = arguments.length;
|
|
1847
1623
|
return $reduce(this, callbackfn, length, length > 1 ? arguments[1] : undefined);
|
|
@@ -1928,7 +1704,10 @@ function concatArrays(...arrays) {
|
|
|
1928
1704
|
* @returns
|
|
1929
1705
|
*/
|
|
1930
1706
|
function flattenArray(array) {
|
|
1931
|
-
|
|
1707
|
+
const filteredValues = array.filter(x => Boolean(x));
|
|
1708
|
+
|
|
1709
|
+
// concat with spread is faster than a depth-one flat
|
|
1710
|
+
return [].concat(...filteredValues);
|
|
1932
1711
|
}
|
|
1933
1712
|
|
|
1934
1713
|
/**
|
|
@@ -2085,12 +1864,51 @@ const mergeArrayIntoArray = pushArrayItemsIntoArray;
|
|
|
2085
1864
|
*/
|
|
2086
1865
|
const mergeArrayOrValueIntoArray = pushItemOrArrayItemsIntoArray;
|
|
2087
1866
|
|
|
2088
|
-
var
|
|
1867
|
+
var wellKnownSymbol$d = wellKnownSymbol$k;
|
|
1868
|
+
|
|
1869
|
+
var TO_STRING_TAG$1 = wellKnownSymbol$d('toStringTag');
|
|
1870
|
+
var test$2 = {};
|
|
1871
|
+
|
|
1872
|
+
test$2[TO_STRING_TAG$1] = 'z';
|
|
1873
|
+
|
|
1874
|
+
var toStringTagSupport = String(test$2) === '[object z]';
|
|
1875
|
+
|
|
1876
|
+
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1877
|
+
var isCallable$9 = isCallable$n;
|
|
1878
|
+
var classofRaw$1 = classofRaw$2;
|
|
1879
|
+
var wellKnownSymbol$c = wellKnownSymbol$k;
|
|
1880
|
+
|
|
1881
|
+
var TO_STRING_TAG = wellKnownSymbol$c('toStringTag');
|
|
1882
|
+
var $Object = Object;
|
|
1883
|
+
|
|
1884
|
+
// ES3 wrong here
|
|
1885
|
+
var CORRECT_ARGUMENTS = classofRaw$1(function () { return arguments; }()) === 'Arguments';
|
|
1886
|
+
|
|
1887
|
+
// fallback for IE11 Script Access Denied error
|
|
1888
|
+
var tryGet = function (it, key) {
|
|
1889
|
+
try {
|
|
1890
|
+
return it[key];
|
|
1891
|
+
} catch (error) { /* empty */ }
|
|
1892
|
+
};
|
|
1893
|
+
|
|
1894
|
+
// getting tag from ES6+ `Object.prototype.toString`
|
|
1895
|
+
var classof$6 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
|
|
1896
|
+
var O, tag, result;
|
|
1897
|
+
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
1898
|
+
// @@toStringTag case
|
|
1899
|
+
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
1900
|
+
// builtinTag case
|
|
1901
|
+
: CORRECT_ARGUMENTS ? classofRaw$1(O)
|
|
1902
|
+
// ES3 arguments fallback
|
|
1903
|
+
: (result = classofRaw$1(O)) === 'Object' && isCallable$9(O.callee) ? 'Arguments' : result;
|
|
1904
|
+
};
|
|
1905
|
+
|
|
1906
|
+
var classof$5 = classof$6;
|
|
2089
1907
|
|
|
2090
1908
|
var $String$1 = String;
|
|
2091
1909
|
|
|
2092
1910
|
var toString$c = function (argument) {
|
|
2093
|
-
if (classof$
|
|
1911
|
+
if (classof$5(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
|
|
2094
1912
|
return $String$1(argument);
|
|
2095
1913
|
};
|
|
2096
1914
|
|
|
@@ -2103,12 +1921,12 @@ var defineBuiltInAccessor$2 = function (target, name, descriptor) {
|
|
|
2103
1921
|
return defineProperty$2.f(target, name, descriptor);
|
|
2104
1922
|
};
|
|
2105
1923
|
|
|
2106
|
-
var $$
|
|
1924
|
+
var $$f = _export;
|
|
2107
1925
|
var DESCRIPTORS$4 = descriptors;
|
|
2108
1926
|
var global$b = global$o;
|
|
2109
|
-
var uncurryThis$
|
|
1927
|
+
var uncurryThis$i = functionUncurryThis;
|
|
2110
1928
|
var hasOwn$3 = hasOwnProperty_1;
|
|
2111
|
-
var isCallable$
|
|
1929
|
+
var isCallable$8 = isCallable$n;
|
|
2112
1930
|
var isPrototypeOf$4 = objectIsPrototypeOf;
|
|
2113
1931
|
var toString$b = toString$c;
|
|
2114
1932
|
var defineBuiltInAccessor$1 = defineBuiltInAccessor$2;
|
|
@@ -2117,7 +1935,7 @@ var copyConstructorProperties = copyConstructorProperties$2;
|
|
|
2117
1935
|
var NativeSymbol = global$b.Symbol;
|
|
2118
1936
|
var SymbolPrototype = NativeSymbol && NativeSymbol.prototype;
|
|
2119
1937
|
|
|
2120
|
-
if (DESCRIPTORS$4 && isCallable$
|
|
1938
|
+
if (DESCRIPTORS$4 && isCallable$8(NativeSymbol) && (!('description' in SymbolPrototype) ||
|
|
2121
1939
|
// Safari 12 bug
|
|
2122
1940
|
NativeSymbol().description !== undefined
|
|
2123
1941
|
)) {
|
|
@@ -2138,11 +1956,11 @@ if (DESCRIPTORS$4 && isCallable$7(NativeSymbol) && (!('description' in SymbolPro
|
|
|
2138
1956
|
SymbolPrototype.constructor = SymbolWrapper;
|
|
2139
1957
|
|
|
2140
1958
|
var NATIVE_SYMBOL = String(NativeSymbol('description detection')) === 'Symbol(description detection)';
|
|
2141
|
-
var thisSymbolValue = uncurryThis$
|
|
2142
|
-
var symbolDescriptiveString = uncurryThis$
|
|
1959
|
+
var thisSymbolValue = uncurryThis$i(SymbolPrototype.valueOf);
|
|
1960
|
+
var symbolDescriptiveString = uncurryThis$i(SymbolPrototype.toString);
|
|
2143
1961
|
var regexp = /^Symbol\((.*)\)[^)]+$/;
|
|
2144
|
-
var replace$4 = uncurryThis$
|
|
2145
|
-
var stringSlice$8 = uncurryThis$
|
|
1962
|
+
var replace$4 = uncurryThis$i(''.replace);
|
|
1963
|
+
var stringSlice$8 = uncurryThis$i(''.slice);
|
|
2146
1964
|
|
|
2147
1965
|
defineBuiltInAccessor$1(SymbolPrototype, 'description', {
|
|
2148
1966
|
configurable: true,
|
|
@@ -2155,7 +1973,7 @@ if (DESCRIPTORS$4 && isCallable$7(NativeSymbol) && (!('description' in SymbolPro
|
|
|
2155
1973
|
}
|
|
2156
1974
|
});
|
|
2157
1975
|
|
|
2158
|
-
$$
|
|
1976
|
+
$$f({ global: true, constructor: true, forced: true }, {
|
|
2159
1977
|
Symbol: SymbolWrapper
|
|
2160
1978
|
});
|
|
2161
1979
|
}
|
|
@@ -2843,24 +2661,24 @@ function setsAreEquivalent(a, b) {
|
|
|
2843
2661
|
}
|
|
2844
2662
|
|
|
2845
2663
|
var DESCRIPTORS$3 = descriptors;
|
|
2846
|
-
var uncurryThis$
|
|
2664
|
+
var uncurryThis$h = functionUncurryThis;
|
|
2847
2665
|
var call$e = functionCall;
|
|
2848
|
-
var fails$
|
|
2666
|
+
var fails$d = fails$p;
|
|
2849
2667
|
var objectKeys = objectKeys$2;
|
|
2850
2668
|
var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
|
2851
2669
|
var propertyIsEnumerableModule = objectPropertyIsEnumerable;
|
|
2852
|
-
var toObject$
|
|
2670
|
+
var toObject$3 = toObject$7;
|
|
2853
2671
|
var IndexedObject = indexedObject;
|
|
2854
2672
|
|
|
2855
2673
|
// eslint-disable-next-line es/no-object-assign -- safe
|
|
2856
2674
|
var $assign = Object.assign;
|
|
2857
2675
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
2858
2676
|
var defineProperty$1 = Object.defineProperty;
|
|
2859
|
-
var concat$1 = uncurryThis$
|
|
2677
|
+
var concat$1 = uncurryThis$h([].concat);
|
|
2860
2678
|
|
|
2861
2679
|
// `Object.assign` method
|
|
2862
2680
|
// https://tc39.es/ecma262/#sec-object.assign
|
|
2863
|
-
var objectAssign = !$assign || fails$
|
|
2681
|
+
var objectAssign = !$assign || fails$d(function () {
|
|
2864
2682
|
// should have correct order of operations (Edge bug)
|
|
2865
2683
|
if (DESCRIPTORS$3 && $assign({ b: 1 }, $assign(defineProperty$1({}, 'a', {
|
|
2866
2684
|
enumerable: true,
|
|
@@ -2881,7 +2699,7 @@ var objectAssign = !$assign || fails$c(function () {
|
|
|
2881
2699
|
alphabet.split('').forEach(function (chr) { B[chr] = chr; });
|
|
2882
2700
|
return $assign({}, A)[symbol] !== 7 || objectKeys($assign({}, B)).join('') !== alphabet;
|
|
2883
2701
|
}) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length`
|
|
2884
|
-
var T = toObject$
|
|
2702
|
+
var T = toObject$3(target);
|
|
2885
2703
|
var argumentsLength = arguments.length;
|
|
2886
2704
|
var index = 1;
|
|
2887
2705
|
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
|
@@ -2899,13 +2717,13 @@ var objectAssign = !$assign || fails$c(function () {
|
|
|
2899
2717
|
} return T;
|
|
2900
2718
|
} : $assign;
|
|
2901
2719
|
|
|
2902
|
-
var $$
|
|
2720
|
+
var $$e = _export;
|
|
2903
2721
|
var assign = objectAssign;
|
|
2904
2722
|
|
|
2905
2723
|
// `Object.assign` method
|
|
2906
2724
|
// https://tc39.es/ecma262/#sec-object.assign
|
|
2907
2725
|
// eslint-disable-next-line es/no-object-assign -- required for testing
|
|
2908
|
-
$$
|
|
2726
|
+
$$e({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
|
|
2909
2727
|
assign: assign
|
|
2910
2728
|
});
|
|
2911
2729
|
|
|
@@ -3681,15 +3499,15 @@ const BooleanStringKeyArrayUtilityInstance = new BooleanKeyArrayUtilityInstance(
|
|
|
3681
3499
|
|
|
3682
3500
|
var tryToString$3 = tryToString$5;
|
|
3683
3501
|
|
|
3684
|
-
var $TypeError$
|
|
3502
|
+
var $TypeError$9 = TypeError;
|
|
3685
3503
|
|
|
3686
3504
|
var deletePropertyOrThrow$1 = function (O, P) {
|
|
3687
|
-
if (!delete O[P]) throw new $TypeError$
|
|
3505
|
+
if (!delete O[P]) throw new $TypeError$9('Cannot delete property ' + tryToString$3(P) + ' of ' + tryToString$3(O));
|
|
3688
3506
|
};
|
|
3689
3507
|
|
|
3690
|
-
var uncurryThis$
|
|
3508
|
+
var uncurryThis$g = functionUncurryThis;
|
|
3691
3509
|
|
|
3692
|
-
var arraySlice$2 = uncurryThis$
|
|
3510
|
+
var arraySlice$2 = uncurryThis$g([].slice);
|
|
3693
3511
|
|
|
3694
3512
|
var arraySlice$1 = arraySlice$2;
|
|
3695
3513
|
|
|
@@ -3749,14 +3567,14 @@ var webkit = userAgent$3.match(/AppleWebKit\/(\d+)\./);
|
|
|
3749
3567
|
|
|
3750
3568
|
var engineWebkitVersion = !!webkit && +webkit[1];
|
|
3751
3569
|
|
|
3752
|
-
var $$
|
|
3753
|
-
var uncurryThis$
|
|
3754
|
-
var aCallable$
|
|
3755
|
-
var toObject$
|
|
3756
|
-
var lengthOfArrayLike$
|
|
3570
|
+
var $$d = _export;
|
|
3571
|
+
var uncurryThis$f = functionUncurryThis;
|
|
3572
|
+
var aCallable$6 = aCallable$a;
|
|
3573
|
+
var toObject$2 = toObject$7;
|
|
3574
|
+
var lengthOfArrayLike$3 = lengthOfArrayLike$6;
|
|
3757
3575
|
var deletePropertyOrThrow = deletePropertyOrThrow$1;
|
|
3758
3576
|
var toString$a = toString$c;
|
|
3759
|
-
var fails$
|
|
3577
|
+
var fails$c = fails$p;
|
|
3760
3578
|
var internalSort = arraySort;
|
|
3761
3579
|
var arrayMethodIsStrict = arrayMethodIsStrict$2;
|
|
3762
3580
|
var FF = engineFfVersion;
|
|
@@ -3765,21 +3583,21 @@ var V8 = engineV8Version;
|
|
|
3765
3583
|
var WEBKIT = engineWebkitVersion;
|
|
3766
3584
|
|
|
3767
3585
|
var test$1 = [];
|
|
3768
|
-
var nativeSort = uncurryThis$
|
|
3769
|
-
var push$2 = uncurryThis$
|
|
3586
|
+
var nativeSort = uncurryThis$f(test$1.sort);
|
|
3587
|
+
var push$2 = uncurryThis$f(test$1.push);
|
|
3770
3588
|
|
|
3771
3589
|
// IE8-
|
|
3772
|
-
var FAILS_ON_UNDEFINED = fails$
|
|
3590
|
+
var FAILS_ON_UNDEFINED = fails$c(function () {
|
|
3773
3591
|
test$1.sort(undefined);
|
|
3774
3592
|
});
|
|
3775
3593
|
// V8 bug
|
|
3776
|
-
var FAILS_ON_NULL = fails$
|
|
3594
|
+
var FAILS_ON_NULL = fails$c(function () {
|
|
3777
3595
|
test$1.sort(null);
|
|
3778
3596
|
});
|
|
3779
3597
|
// Old WebKit
|
|
3780
3598
|
var STRICT_METHOD = arrayMethodIsStrict('sort');
|
|
3781
3599
|
|
|
3782
|
-
var STABLE_SORT = !fails$
|
|
3600
|
+
var STABLE_SORT = !fails$c(function () {
|
|
3783
3601
|
// feature detection can be too slow, so check engines versions
|
|
3784
3602
|
if (V8) return V8 < 70;
|
|
3785
3603
|
if (FF && FF > 3) return;
|
|
@@ -3827,16 +3645,16 @@ var getSortCompare = function (comparefn) {
|
|
|
3827
3645
|
|
|
3828
3646
|
// `Array.prototype.sort` method
|
|
3829
3647
|
// https://tc39.es/ecma262/#sec-array.prototype.sort
|
|
3830
|
-
$$
|
|
3648
|
+
$$d({ target: 'Array', proto: true, forced: FORCED$1 }, {
|
|
3831
3649
|
sort: function sort(comparefn) {
|
|
3832
|
-
if (comparefn !== undefined) aCallable$
|
|
3650
|
+
if (comparefn !== undefined) aCallable$6(comparefn);
|
|
3833
3651
|
|
|
3834
|
-
var array = toObject$
|
|
3652
|
+
var array = toObject$2(this);
|
|
3835
3653
|
|
|
3836
3654
|
if (STABLE_SORT) return comparefn === undefined ? nativeSort(array) : nativeSort(array, comparefn);
|
|
3837
3655
|
|
|
3838
3656
|
var items = [];
|
|
3839
|
-
var arrayLength = lengthOfArrayLike$
|
|
3657
|
+
var arrayLength = lengthOfArrayLike$3(array);
|
|
3840
3658
|
var itemsLength, index;
|
|
3841
3659
|
|
|
3842
3660
|
for (index = 0; index < arrayLength; index++) {
|
|
@@ -3845,7 +3663,7 @@ $$c({ target: 'Array', proto: true, forced: FORCED$1 }, {
|
|
|
3845
3663
|
|
|
3846
3664
|
internalSort(items, getSortCompare(comparefn));
|
|
3847
3665
|
|
|
3848
|
-
itemsLength = lengthOfArrayLike$
|
|
3666
|
+
itemsLength = lengthOfArrayLike$3(items);
|
|
3849
3667
|
index = 0;
|
|
3850
3668
|
|
|
3851
3669
|
while (index < itemsLength) array[index] = items[index++];
|
|
@@ -3890,14 +3708,14 @@ var PROPER_FUNCTION_NAME$1 = functionName.PROPER;
|
|
|
3890
3708
|
var defineBuiltIn$4 = defineBuiltIn$8;
|
|
3891
3709
|
var anObject$9 = anObject$g;
|
|
3892
3710
|
var $toString = toString$c;
|
|
3893
|
-
var fails$
|
|
3711
|
+
var fails$b = fails$p;
|
|
3894
3712
|
var getRegExpFlags$1 = regexpGetFlags;
|
|
3895
3713
|
|
|
3896
3714
|
var TO_STRING = 'toString';
|
|
3897
3715
|
var RegExpPrototype$2 = RegExp.prototype;
|
|
3898
3716
|
var nativeToString = RegExpPrototype$2[TO_STRING];
|
|
3899
3717
|
|
|
3900
|
-
var NOT_GENERIC = fails$
|
|
3718
|
+
var NOT_GENERIC = fails$b(function () { return nativeToString.call({ source: 'a', flags: 'b' }) !== '/a/b'; });
|
|
3901
3719
|
// FF44- RegExp#toString has a wrong name
|
|
3902
3720
|
var INCORRECT_NAME = PROPER_FUNCTION_NAME$1 && nativeToString.name !== TO_STRING;
|
|
3903
3721
|
|
|
@@ -4443,7 +4261,9 @@ function expandArrayValueTuples(values) {
|
|
|
4443
4261
|
}
|
|
4444
4262
|
|
|
4445
4263
|
/**
|
|
4446
|
-
* Creates a map by reading keys from the input values.
|
|
4264
|
+
* Creates a map by reading keys from the input values.
|
|
4265
|
+
*
|
|
4266
|
+
* Values without a key (null/undefined) are ignored.
|
|
4447
4267
|
*/
|
|
4448
4268
|
|
|
4449
4269
|
/**
|
|
@@ -5123,13 +4943,13 @@ function boundNumber(input, min, max) {
|
|
|
5123
4943
|
return Math.max(Math.min(input, max), min);
|
|
5124
4944
|
}
|
|
5125
4945
|
|
|
5126
|
-
var fails$
|
|
4946
|
+
var fails$a = fails$p;
|
|
5127
4947
|
var global$a = global$o;
|
|
5128
4948
|
|
|
5129
4949
|
// babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
|
|
5130
4950
|
var $RegExp$2 = global$a.RegExp;
|
|
5131
4951
|
|
|
5132
|
-
var UNSUPPORTED_Y$3 = fails$
|
|
4952
|
+
var UNSUPPORTED_Y$3 = fails$a(function () {
|
|
5133
4953
|
var re = $RegExp$2('a', 'y');
|
|
5134
4954
|
re.lastIndex = 2;
|
|
5135
4955
|
return re.exec('abcd') !== null;
|
|
@@ -5137,11 +4957,11 @@ var UNSUPPORTED_Y$3 = fails$9(function () {
|
|
|
5137
4957
|
|
|
5138
4958
|
// UC Browser bug
|
|
5139
4959
|
// https://github.com/zloirock/core-js/issues/1008
|
|
5140
|
-
var MISSED_STICKY$1 = UNSUPPORTED_Y$3 || fails$
|
|
4960
|
+
var MISSED_STICKY$1 = UNSUPPORTED_Y$3 || fails$a(function () {
|
|
5141
4961
|
return !$RegExp$2('a', 'y').sticky;
|
|
5142
4962
|
});
|
|
5143
4963
|
|
|
5144
|
-
var BROKEN_CARET = UNSUPPORTED_Y$3 || fails$
|
|
4964
|
+
var BROKEN_CARET = UNSUPPORTED_Y$3 || fails$a(function () {
|
|
5145
4965
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=773687
|
|
5146
4966
|
var re = $RegExp$2('^r', 'gy');
|
|
5147
4967
|
re.lastIndex = 2;
|
|
@@ -5154,24 +4974,24 @@ var regexpStickyHelpers = {
|
|
|
5154
4974
|
UNSUPPORTED_Y: UNSUPPORTED_Y$3
|
|
5155
4975
|
};
|
|
5156
4976
|
|
|
5157
|
-
var fails$
|
|
4977
|
+
var fails$9 = fails$p;
|
|
5158
4978
|
var global$9 = global$o;
|
|
5159
4979
|
|
|
5160
4980
|
// babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
|
|
5161
4981
|
var $RegExp$1 = global$9.RegExp;
|
|
5162
4982
|
|
|
5163
|
-
var regexpUnsupportedDotAll = fails$
|
|
4983
|
+
var regexpUnsupportedDotAll = fails$9(function () {
|
|
5164
4984
|
var re = $RegExp$1('.', 's');
|
|
5165
4985
|
return !(re.dotAll && re.test('\n') && re.flags === 's');
|
|
5166
4986
|
});
|
|
5167
4987
|
|
|
5168
|
-
var fails$
|
|
4988
|
+
var fails$8 = fails$p;
|
|
5169
4989
|
var global$8 = global$o;
|
|
5170
4990
|
|
|
5171
4991
|
// babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
|
|
5172
4992
|
var $RegExp = global$8.RegExp;
|
|
5173
4993
|
|
|
5174
|
-
var regexpUnsupportedNcg = fails$
|
|
4994
|
+
var regexpUnsupportedNcg = fails$8(function () {
|
|
5175
4995
|
var re = $RegExp('(?<a>b)', 'g');
|
|
5176
4996
|
return re.exec('b').groups.a !== 'b' ||
|
|
5177
4997
|
'b'.replace(re, '$<a>c') !== 'bc';
|
|
@@ -5180,7 +5000,7 @@ var regexpUnsupportedNcg = fails$7(function () {
|
|
|
5180
5000
|
/* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
|
|
5181
5001
|
/* eslint-disable regexp/no-useless-quantifier -- testing */
|
|
5182
5002
|
var call$c = functionCall;
|
|
5183
|
-
var uncurryThis$
|
|
5003
|
+
var uncurryThis$e = functionUncurryThis;
|
|
5184
5004
|
var toString$9 = toString$c;
|
|
5185
5005
|
var regexpFlags = regexpFlags$1;
|
|
5186
5006
|
var stickyHelpers$2 = regexpStickyHelpers;
|
|
@@ -5193,10 +5013,10 @@ var UNSUPPORTED_NCG$1 = regexpUnsupportedNcg;
|
|
|
5193
5013
|
var nativeReplace = shared('native-string-replace', String.prototype.replace);
|
|
5194
5014
|
var nativeExec = RegExp.prototype.exec;
|
|
5195
5015
|
var patchedExec = nativeExec;
|
|
5196
|
-
var charAt$4 = uncurryThis$
|
|
5197
|
-
var indexOf = uncurryThis$
|
|
5198
|
-
var replace$3 = uncurryThis$
|
|
5199
|
-
var stringSlice$7 = uncurryThis$
|
|
5016
|
+
var charAt$4 = uncurryThis$e(''.charAt);
|
|
5017
|
+
var indexOf = uncurryThis$e(''.indexOf);
|
|
5018
|
+
var replace$3 = uncurryThis$e(''.replace);
|
|
5019
|
+
var stringSlice$7 = uncurryThis$e(''.slice);
|
|
5200
5020
|
|
|
5201
5021
|
var UPDATES_LAST_INDEX_WRONG = (function () {
|
|
5202
5022
|
var re1 = /a/;
|
|
@@ -5294,22 +5114,22 @@ if (PATCH) {
|
|
|
5294
5114
|
|
|
5295
5115
|
var regexpExec$2 = patchedExec;
|
|
5296
5116
|
|
|
5297
|
-
var $$
|
|
5298
|
-
var exec$
|
|
5117
|
+
var $$c = _export;
|
|
5118
|
+
var exec$2 = regexpExec$2;
|
|
5299
5119
|
|
|
5300
5120
|
// `RegExp.prototype.exec` method
|
|
5301
5121
|
// https://tc39.es/ecma262/#sec-regexp.prototype.exec
|
|
5302
|
-
$$
|
|
5303
|
-
exec: exec$
|
|
5122
|
+
$$c({ target: 'RegExp', proto: true, forced: /./.exec !== exec$2 }, {
|
|
5123
|
+
exec: exec$2
|
|
5304
5124
|
});
|
|
5305
5125
|
|
|
5306
|
-
var uncurryThis$
|
|
5126
|
+
var uncurryThis$d = functionUncurryThis;
|
|
5307
5127
|
|
|
5308
5128
|
// `thisNumberValue` abstract operation
|
|
5309
5129
|
// https://tc39.es/ecma262/#sec-thisnumbervalue
|
|
5310
|
-
var thisNumberValue$1 = uncurryThis$
|
|
5130
|
+
var thisNumberValue$1 = uncurryThis$d(1.0.valueOf);
|
|
5311
5131
|
|
|
5312
|
-
var toIntegerOrInfinity$
|
|
5132
|
+
var toIntegerOrInfinity$4 = toIntegerOrInfinity$7;
|
|
5313
5133
|
var toString$8 = toString$c;
|
|
5314
5134
|
var requireObjectCoercible$7 = requireObjectCoercible$a;
|
|
5315
5135
|
|
|
@@ -5320,25 +5140,25 @@ var $RangeError$1 = RangeError;
|
|
|
5320
5140
|
var stringRepeat = function repeat(count) {
|
|
5321
5141
|
var str = toString$8(requireObjectCoercible$7(this));
|
|
5322
5142
|
var result = '';
|
|
5323
|
-
var n = toIntegerOrInfinity$
|
|
5143
|
+
var n = toIntegerOrInfinity$4(count);
|
|
5324
5144
|
if (n < 0 || n === Infinity) throw new $RangeError$1('Wrong number of repetitions');
|
|
5325
5145
|
for (;n > 0; (n >>>= 1) && (str += str)) if (n & 1) result += str;
|
|
5326
5146
|
return result;
|
|
5327
5147
|
};
|
|
5328
5148
|
|
|
5329
|
-
var $$
|
|
5330
|
-
var uncurryThis$
|
|
5331
|
-
var toIntegerOrInfinity$
|
|
5149
|
+
var $$b = _export;
|
|
5150
|
+
var uncurryThis$c = functionUncurryThis;
|
|
5151
|
+
var toIntegerOrInfinity$3 = toIntegerOrInfinity$7;
|
|
5332
5152
|
var thisNumberValue = thisNumberValue$1;
|
|
5333
5153
|
var $repeat = stringRepeat;
|
|
5334
|
-
var fails$
|
|
5154
|
+
var fails$7 = fails$p;
|
|
5335
5155
|
|
|
5336
5156
|
var $RangeError = RangeError;
|
|
5337
5157
|
var $String = String;
|
|
5338
5158
|
var floor$1 = Math.floor;
|
|
5339
|
-
var repeat = uncurryThis$
|
|
5340
|
-
var stringSlice$6 = uncurryThis$
|
|
5341
|
-
var nativeToFixed = uncurryThis$
|
|
5159
|
+
var repeat = uncurryThis$c($repeat);
|
|
5160
|
+
var stringSlice$6 = uncurryThis$c(''.slice);
|
|
5161
|
+
var nativeToFixed = uncurryThis$c(1.0.toFixed);
|
|
5342
5162
|
|
|
5343
5163
|
var pow = function (x, n, acc) {
|
|
5344
5164
|
return n === 0 ? acc : n % 2 === 1 ? pow(x, n - 1, acc * x) : pow(x * x, n / 2, acc);
|
|
@@ -5388,22 +5208,22 @@ var dataToString = function (data) {
|
|
|
5388
5208
|
} return s;
|
|
5389
5209
|
};
|
|
5390
5210
|
|
|
5391
|
-
var FORCED = fails$
|
|
5211
|
+
var FORCED = fails$7(function () {
|
|
5392
5212
|
return nativeToFixed(0.00008, 3) !== '0.000' ||
|
|
5393
5213
|
nativeToFixed(0.9, 0) !== '1' ||
|
|
5394
5214
|
nativeToFixed(1.255, 2) !== '1.25' ||
|
|
5395
5215
|
nativeToFixed(1000000000000000128.0, 0) !== '1000000000000000128';
|
|
5396
|
-
}) || !fails$
|
|
5216
|
+
}) || !fails$7(function () {
|
|
5397
5217
|
// V8 ~ Android 4.3-
|
|
5398
5218
|
nativeToFixed({});
|
|
5399
5219
|
});
|
|
5400
5220
|
|
|
5401
5221
|
// `Number.prototype.toFixed` method
|
|
5402
5222
|
// https://tc39.es/ecma262/#sec-number.prototype.tofixed
|
|
5403
|
-
$$
|
|
5223
|
+
$$b({ target: 'Number', proto: true, forced: FORCED }, {
|
|
5404
5224
|
toFixed: function toFixed(fractionDigits) {
|
|
5405
5225
|
var number = thisNumberValue(this);
|
|
5406
|
-
var fractDigits = toIntegerOrInfinity$
|
|
5226
|
+
var fractDigits = toIntegerOrInfinity$3(fractionDigits);
|
|
5407
5227
|
var data = [0, 0, 0, 0, 0, 0];
|
|
5408
5228
|
var sign = '';
|
|
5409
5229
|
var result = '0';
|
|
@@ -5971,6 +5791,16 @@ function range(input, inputEnd) {
|
|
|
5971
5791
|
* Item that references an IndexNumber.
|
|
5972
5792
|
*/
|
|
5973
5793
|
|
|
5794
|
+
/**
|
|
5795
|
+
* Convenience function for calling readKeysToMap() and keying the values by their index number.
|
|
5796
|
+
*
|
|
5797
|
+
* @param items
|
|
5798
|
+
* @returns
|
|
5799
|
+
*/
|
|
5800
|
+
function indexRefMap(items) {
|
|
5801
|
+
return readKeysToMap(items, item => item.i);
|
|
5802
|
+
}
|
|
5803
|
+
|
|
5974
5804
|
/**
|
|
5975
5805
|
* IndexRef object that may not have an index set yet
|
|
5976
5806
|
*/
|
|
@@ -6205,6 +6035,13 @@ function safeFindBestIndexMatch(input, i) {
|
|
|
6205
6035
|
return input != null && input.length > 0 ? findBestIndexMatch(input, i) : undefined;
|
|
6206
6036
|
}
|
|
6207
6037
|
|
|
6038
|
+
/**
|
|
6039
|
+
* Creates a FilterUniqueFunction that filters by the input value's index.
|
|
6040
|
+
*
|
|
6041
|
+
* @param readIndex
|
|
6042
|
+
*/
|
|
6043
|
+
const filterUniqueByIndex = filterUniqueFunction(readIndexNumber);
|
|
6044
|
+
|
|
6208
6045
|
// MARK: IndexRange
|
|
6209
6046
|
/**
|
|
6210
6047
|
* A min and max value that denote the maximum edges of a range of index values.
|
|
@@ -6783,24 +6620,24 @@ function terminatingFactoryFromArray(array, terminatingValue) {
|
|
|
6783
6620
|
var call$b = functionCall;
|
|
6784
6621
|
var defineBuiltIn$3 = defineBuiltIn$8;
|
|
6785
6622
|
var regexpExec$1 = regexpExec$2;
|
|
6786
|
-
var fails$
|
|
6787
|
-
var wellKnownSymbol$
|
|
6623
|
+
var fails$6 = fails$p;
|
|
6624
|
+
var wellKnownSymbol$b = wellKnownSymbol$k;
|
|
6788
6625
|
var createNonEnumerableProperty$1 = createNonEnumerableProperty$6;
|
|
6789
6626
|
|
|
6790
|
-
var SPECIES$
|
|
6627
|
+
var SPECIES$4 = wellKnownSymbol$b('species');
|
|
6791
6628
|
var RegExpPrototype$1 = RegExp.prototype;
|
|
6792
6629
|
|
|
6793
6630
|
var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
|
|
6794
|
-
var SYMBOL = wellKnownSymbol$
|
|
6631
|
+
var SYMBOL = wellKnownSymbol$b(KEY);
|
|
6795
6632
|
|
|
6796
|
-
var DELEGATES_TO_SYMBOL = !fails$
|
|
6633
|
+
var DELEGATES_TO_SYMBOL = !fails$6(function () {
|
|
6797
6634
|
// String methods call symbol-named RegExp methods
|
|
6798
6635
|
var O = {};
|
|
6799
6636
|
O[SYMBOL] = function () { return 7; };
|
|
6800
6637
|
return ''[KEY](O) !== 7;
|
|
6801
6638
|
});
|
|
6802
6639
|
|
|
6803
|
-
var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails$
|
|
6640
|
+
var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails$6(function () {
|
|
6804
6641
|
// Symbol-named RegExp methods call .exec
|
|
6805
6642
|
var execCalled = false;
|
|
6806
6643
|
var re = /a/;
|
|
@@ -6813,7 +6650,7 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
|
|
|
6813
6650
|
// RegExp[@@split] doesn't call the regex's exec method, but first creates
|
|
6814
6651
|
// a new one. We need to return the patched regex when creating the new one.
|
|
6815
6652
|
re.constructor = {};
|
|
6816
|
-
re.constructor[SPECIES$
|
|
6653
|
+
re.constructor[SPECIES$4] = function () { return re; };
|
|
6817
6654
|
re.flags = '';
|
|
6818
6655
|
re[SYMBOL] = /./[SYMBOL];
|
|
6819
6656
|
}
|
|
@@ -6854,19 +6691,19 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
|
|
|
6854
6691
|
if (SHAM) createNonEnumerableProperty$1(RegExpPrototype$1[SYMBOL], 'sham', true);
|
|
6855
6692
|
};
|
|
6856
6693
|
|
|
6857
|
-
var uncurryThis$
|
|
6858
|
-
var toIntegerOrInfinity$
|
|
6694
|
+
var uncurryThis$b = functionUncurryThis;
|
|
6695
|
+
var toIntegerOrInfinity$2 = toIntegerOrInfinity$7;
|
|
6859
6696
|
var toString$7 = toString$c;
|
|
6860
6697
|
var requireObjectCoercible$6 = requireObjectCoercible$a;
|
|
6861
6698
|
|
|
6862
|
-
var charAt$3 = uncurryThis$
|
|
6863
|
-
var charCodeAt = uncurryThis$
|
|
6864
|
-
var stringSlice$5 = uncurryThis$
|
|
6699
|
+
var charAt$3 = uncurryThis$b(''.charAt);
|
|
6700
|
+
var charCodeAt = uncurryThis$b(''.charCodeAt);
|
|
6701
|
+
var stringSlice$5 = uncurryThis$b(''.slice);
|
|
6865
6702
|
|
|
6866
6703
|
var createMethod$1 = function (CONVERT_TO_STRING) {
|
|
6867
6704
|
return function ($this, pos) {
|
|
6868
6705
|
var S = toString$7(requireObjectCoercible$6($this));
|
|
6869
|
-
var position = toIntegerOrInfinity$
|
|
6706
|
+
var position = toIntegerOrInfinity$2(pos);
|
|
6870
6707
|
var size = S.length;
|
|
6871
6708
|
var first, second;
|
|
6872
6709
|
if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
|
|
@@ -6901,23 +6738,23 @@ var advanceStringIndex$3 = function (S, index, unicode) {
|
|
|
6901
6738
|
|
|
6902
6739
|
var call$a = functionCall;
|
|
6903
6740
|
var anObject$8 = anObject$g;
|
|
6904
|
-
var isCallable$
|
|
6905
|
-
var classof$
|
|
6741
|
+
var isCallable$7 = isCallable$n;
|
|
6742
|
+
var classof$4 = classofRaw$2;
|
|
6906
6743
|
var regexpExec = regexpExec$2;
|
|
6907
6744
|
|
|
6908
|
-
var $TypeError$
|
|
6745
|
+
var $TypeError$8 = TypeError;
|
|
6909
6746
|
|
|
6910
6747
|
// `RegExpExec` abstract operation
|
|
6911
6748
|
// https://tc39.es/ecma262/#sec-regexpexec
|
|
6912
6749
|
var regexpExecAbstract = function (R, S) {
|
|
6913
6750
|
var exec = R.exec;
|
|
6914
|
-
if (isCallable$
|
|
6751
|
+
if (isCallable$7(exec)) {
|
|
6915
6752
|
var result = call$a(exec, R, S);
|
|
6916
6753
|
if (result !== null) anObject$8(result);
|
|
6917
6754
|
return result;
|
|
6918
6755
|
}
|
|
6919
|
-
if (classof$
|
|
6920
|
-
throw new $TypeError$
|
|
6756
|
+
if (classof$4(R) === 'RegExp') return call$a(regexpExec, R, S);
|
|
6757
|
+
throw new $TypeError$8('RegExp#exec called on incompatible receiver');
|
|
6921
6758
|
};
|
|
6922
6759
|
|
|
6923
6760
|
var call$9 = functionCall;
|
|
@@ -7272,12 +7109,12 @@ function findIndexOfFirstDuplicateValue(values) {
|
|
|
7272
7109
|
var whitespaces$2 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
|
|
7273
7110
|
'\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
|
|
7274
7111
|
|
|
7275
|
-
var uncurryThis$
|
|
7112
|
+
var uncurryThis$a = functionUncurryThis;
|
|
7276
7113
|
var requireObjectCoercible$4 = requireObjectCoercible$a;
|
|
7277
7114
|
var toString$5 = toString$c;
|
|
7278
7115
|
var whitespaces$1 = whitespaces$2;
|
|
7279
7116
|
|
|
7280
|
-
var replace$2 = uncurryThis$
|
|
7117
|
+
var replace$2 = uncurryThis$a(''.replace);
|
|
7281
7118
|
var ltrim = RegExp('^[' + whitespaces$1 + ']+');
|
|
7282
7119
|
var rtrim = RegExp('(^|[^' + whitespaces$1 + '])[' + whitespaces$1 + ']+$');
|
|
7283
7120
|
|
|
@@ -7304,61 +7141,113 @@ var stringTrim = {
|
|
|
7304
7141
|
};
|
|
7305
7142
|
|
|
7306
7143
|
var PROPER_FUNCTION_NAME = functionName.PROPER;
|
|
7307
|
-
var fails$
|
|
7144
|
+
var fails$5 = fails$p;
|
|
7308
7145
|
var whitespaces = whitespaces$2;
|
|
7309
7146
|
|
|
7310
7147
|
var non = '\u200B\u0085\u180E';
|
|
7311
7148
|
|
|
7312
|
-
// check that a method works with the correct list
|
|
7313
|
-
// of whitespaces and has a correct name
|
|
7314
|
-
var stringTrimForced = function (METHOD_NAME) {
|
|
7315
|
-
return fails$
|
|
7316
|
-
return !!whitespaces[METHOD_NAME]()
|
|
7317
|
-
|| non[METHOD_NAME]() !== non
|
|
7318
|
-
|| (PROPER_FUNCTION_NAME && whitespaces[METHOD_NAME].name !== METHOD_NAME);
|
|
7319
|
-
});
|
|
7149
|
+
// check that a method works with the correct list
|
|
7150
|
+
// of whitespaces and has a correct name
|
|
7151
|
+
var stringTrimForced = function (METHOD_NAME) {
|
|
7152
|
+
return fails$5(function () {
|
|
7153
|
+
return !!whitespaces[METHOD_NAME]()
|
|
7154
|
+
|| non[METHOD_NAME]() !== non
|
|
7155
|
+
|| (PROPER_FUNCTION_NAME && whitespaces[METHOD_NAME].name !== METHOD_NAME);
|
|
7156
|
+
});
|
|
7157
|
+
};
|
|
7158
|
+
|
|
7159
|
+
var $$a = _export;
|
|
7160
|
+
var $trim = stringTrim.trim;
|
|
7161
|
+
var forcedStringTrimMethod = stringTrimForced;
|
|
7162
|
+
|
|
7163
|
+
// `String.prototype.trim` method
|
|
7164
|
+
// https://tc39.es/ecma262/#sec-string.prototype.trim
|
|
7165
|
+
$$a({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
|
|
7166
|
+
trim: function trim() {
|
|
7167
|
+
return $trim(this);
|
|
7168
|
+
}
|
|
7169
|
+
});
|
|
7170
|
+
|
|
7171
|
+
var uncurryThis$9 = functionUncurryThis;
|
|
7172
|
+
var fails$4 = fails$p;
|
|
7173
|
+
var isCallable$6 = isCallable$n;
|
|
7174
|
+
var classof$3 = classof$6;
|
|
7175
|
+
var getBuiltIn$3 = getBuiltIn$7;
|
|
7176
|
+
var inspectSource$1 = inspectSource$3;
|
|
7177
|
+
|
|
7178
|
+
var noop = function () { /* empty */ };
|
|
7179
|
+
var construct = getBuiltIn$3('Reflect', 'construct');
|
|
7180
|
+
var constructorRegExp = /^\s*(?:class|function)\b/;
|
|
7181
|
+
var exec$1 = uncurryThis$9(constructorRegExp.exec);
|
|
7182
|
+
var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
|
|
7183
|
+
|
|
7184
|
+
var isConstructorModern = function isConstructor(argument) {
|
|
7185
|
+
if (!isCallable$6(argument)) return false;
|
|
7186
|
+
try {
|
|
7187
|
+
construct(noop, [], argument);
|
|
7188
|
+
return true;
|
|
7189
|
+
} catch (error) {
|
|
7190
|
+
return false;
|
|
7191
|
+
}
|
|
7192
|
+
};
|
|
7193
|
+
|
|
7194
|
+
var isConstructorLegacy = function isConstructor(argument) {
|
|
7195
|
+
if (!isCallable$6(argument)) return false;
|
|
7196
|
+
switch (classof$3(argument)) {
|
|
7197
|
+
case 'AsyncFunction':
|
|
7198
|
+
case 'GeneratorFunction':
|
|
7199
|
+
case 'AsyncGeneratorFunction': return false;
|
|
7200
|
+
}
|
|
7201
|
+
try {
|
|
7202
|
+
// we can't check .prototype since constructors produced by .bind haven't it
|
|
7203
|
+
// `Function#toString` throws on some built-it function in some legacy engines
|
|
7204
|
+
// (for example, `DOMQuad` and similar in FF41-)
|
|
7205
|
+
return INCORRECT_TO_STRING || !!exec$1(constructorRegExp, inspectSource$1(argument));
|
|
7206
|
+
} catch (error) {
|
|
7207
|
+
return true;
|
|
7208
|
+
}
|
|
7320
7209
|
};
|
|
7321
7210
|
|
|
7322
|
-
|
|
7323
|
-
var $trim = stringTrim.trim;
|
|
7324
|
-
var forcedStringTrimMethod = stringTrimForced;
|
|
7211
|
+
isConstructorLegacy.sham = true;
|
|
7325
7212
|
|
|
7326
|
-
// `
|
|
7327
|
-
// https://tc39.es/ecma262/#sec-
|
|
7328
|
-
|
|
7329
|
-
|
|
7330
|
-
|
|
7331
|
-
|
|
7332
|
-
})
|
|
7213
|
+
// `IsConstructor` abstract operation
|
|
7214
|
+
// https://tc39.es/ecma262/#sec-isconstructor
|
|
7215
|
+
var isConstructor$2 = !construct || fails$4(function () {
|
|
7216
|
+
var called;
|
|
7217
|
+
return isConstructorModern(isConstructorModern.call)
|
|
7218
|
+
|| !isConstructorModern(Object)
|
|
7219
|
+
|| !isConstructorModern(function () { called = true; })
|
|
7220
|
+
|| called;
|
|
7221
|
+
}) ? isConstructorLegacy : isConstructorModern;
|
|
7333
7222
|
|
|
7334
|
-
var isConstructor = isConstructor$2;
|
|
7223
|
+
var isConstructor$1 = isConstructor$2;
|
|
7335
7224
|
var tryToString$2 = tryToString$5;
|
|
7336
7225
|
|
|
7337
|
-
var $TypeError$
|
|
7226
|
+
var $TypeError$7 = TypeError;
|
|
7338
7227
|
|
|
7339
7228
|
// `Assert: IsConstructor(argument) is true`
|
|
7340
7229
|
var aConstructor$1 = function (argument) {
|
|
7341
|
-
if (isConstructor(argument)) return argument;
|
|
7342
|
-
throw new $TypeError$
|
|
7230
|
+
if (isConstructor$1(argument)) return argument;
|
|
7231
|
+
throw new $TypeError$7(tryToString$2(argument) + ' is not a constructor');
|
|
7343
7232
|
};
|
|
7344
7233
|
|
|
7345
7234
|
var anObject$6 = anObject$g;
|
|
7346
7235
|
var aConstructor = aConstructor$1;
|
|
7347
7236
|
var isNullOrUndefined$3 = isNullOrUndefined$7;
|
|
7348
|
-
var wellKnownSymbol$
|
|
7237
|
+
var wellKnownSymbol$a = wellKnownSymbol$k;
|
|
7349
7238
|
|
|
7350
|
-
var SPECIES$
|
|
7239
|
+
var SPECIES$3 = wellKnownSymbol$a('species');
|
|
7351
7240
|
|
|
7352
7241
|
// `SpeciesConstructor` abstract operation
|
|
7353
7242
|
// https://tc39.es/ecma262/#sec-speciesconstructor
|
|
7354
7243
|
var speciesConstructor$2 = function (O, defaultConstructor) {
|
|
7355
7244
|
var C = anObject$6(O).constructor;
|
|
7356
7245
|
var S;
|
|
7357
|
-
return C === undefined || isNullOrUndefined$3(S = anObject$6(C)[SPECIES$
|
|
7246
|
+
return C === undefined || isNullOrUndefined$3(S = anObject$6(C)[SPECIES$3]) ? defaultConstructor : aConstructor(S);
|
|
7358
7247
|
};
|
|
7359
7248
|
|
|
7360
7249
|
var call$8 = functionCall;
|
|
7361
|
-
var uncurryThis$
|
|
7250
|
+
var uncurryThis$8 = functionUncurryThis;
|
|
7362
7251
|
var fixRegExpWellKnownSymbolLogic$1 = fixRegexpWellKnownSymbolLogic;
|
|
7363
7252
|
var anObject$5 = anObject$g;
|
|
7364
7253
|
var isNullOrUndefined$2 = isNullOrUndefined$7;
|
|
@@ -7375,8 +7264,8 @@ var fails$3 = fails$p;
|
|
|
7375
7264
|
var UNSUPPORTED_Y$1 = stickyHelpers$1.UNSUPPORTED_Y;
|
|
7376
7265
|
var MAX_UINT32 = 0xFFFFFFFF;
|
|
7377
7266
|
var min$3 = Math.min;
|
|
7378
|
-
var push$1 = uncurryThis$
|
|
7379
|
-
var stringSlice$4 = uncurryThis$
|
|
7267
|
+
var push$1 = uncurryThis$8([].push);
|
|
7268
|
+
var stringSlice$4 = uncurryThis$8(''.slice);
|
|
7380
7269
|
|
|
7381
7270
|
// Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
|
|
7382
7271
|
// Weex JS has frozen built-in prototypes, so use try / catch wrapper
|
|
@@ -7599,32 +7488,42 @@ function mapIterable(values, fn) {
|
|
|
7599
7488
|
return mapping;
|
|
7600
7489
|
}
|
|
7601
7490
|
|
|
7602
|
-
var
|
|
7603
|
-
var
|
|
7604
|
-
|
|
7491
|
+
var classofRaw = classofRaw$2;
|
|
7492
|
+
var uncurryThis$7 = functionUncurryThis;
|
|
7493
|
+
|
|
7494
|
+
var functionUncurryThisClause = function (fn) {
|
|
7495
|
+
// Nashorn bug:
|
|
7496
|
+
// https://github.com/zloirock/core-js/issues/1128
|
|
7497
|
+
// https://github.com/zloirock/core-js/issues/1130
|
|
7498
|
+
if (classofRaw(fn) === 'Function') return uncurryThis$7(fn);
|
|
7499
|
+
};
|
|
7500
|
+
|
|
7501
|
+
var isObject$4 = isObject$c;
|
|
7502
|
+
var classof$2 = classofRaw$2;
|
|
7503
|
+
var wellKnownSymbol$9 = wellKnownSymbol$k;
|
|
7605
7504
|
|
|
7606
|
-
var MATCH$2 = wellKnownSymbol$
|
|
7505
|
+
var MATCH$2 = wellKnownSymbol$9('match');
|
|
7607
7506
|
|
|
7608
7507
|
// `IsRegExp` abstract operation
|
|
7609
7508
|
// https://tc39.es/ecma262/#sec-isregexp
|
|
7610
7509
|
var isRegexp = function (it) {
|
|
7611
7510
|
var isRegExp;
|
|
7612
|
-
return isObject$
|
|
7511
|
+
return isObject$4(it) && ((isRegExp = it[MATCH$2]) !== undefined ? !!isRegExp : classof$2(it) === 'RegExp');
|
|
7613
7512
|
};
|
|
7614
7513
|
|
|
7615
7514
|
var isRegExp$1 = isRegexp;
|
|
7616
7515
|
|
|
7617
|
-
var $TypeError$
|
|
7516
|
+
var $TypeError$6 = TypeError;
|
|
7618
7517
|
|
|
7619
7518
|
var notARegexp = function (it) {
|
|
7620
7519
|
if (isRegExp$1(it)) {
|
|
7621
|
-
throw new $TypeError$
|
|
7520
|
+
throw new $TypeError$6("The method doesn't accept regular expressions");
|
|
7622
7521
|
} return it;
|
|
7623
7522
|
};
|
|
7624
7523
|
|
|
7625
|
-
var wellKnownSymbol$
|
|
7524
|
+
var wellKnownSymbol$8 = wellKnownSymbol$k;
|
|
7626
7525
|
|
|
7627
|
-
var MATCH$1 = wellKnownSymbol$
|
|
7526
|
+
var MATCH$1 = wellKnownSymbol$8('match');
|
|
7628
7527
|
|
|
7629
7528
|
var correctIsRegexpLogic = function (METHOD_NAME) {
|
|
7630
7529
|
var regexp = /./;
|
|
@@ -7638,8 +7537,8 @@ var correctIsRegexpLogic = function (METHOD_NAME) {
|
|
|
7638
7537
|
} return false;
|
|
7639
7538
|
};
|
|
7640
7539
|
|
|
7641
|
-
var $$
|
|
7642
|
-
var uncurryThis$
|
|
7540
|
+
var $$9 = _export;
|
|
7541
|
+
var uncurryThis$6 = functionUncurryThisClause;
|
|
7643
7542
|
var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f;
|
|
7644
7543
|
var toLength$2 = toLength$6;
|
|
7645
7544
|
var toString$3 = toString$c;
|
|
@@ -7647,7 +7546,7 @@ var notARegExp$1 = notARegexp;
|
|
|
7647
7546
|
var requireObjectCoercible$2 = requireObjectCoercible$a;
|
|
7648
7547
|
var correctIsRegExpLogic$1 = correctIsRegexpLogic;
|
|
7649
7548
|
|
|
7650
|
-
var stringSlice$3 = uncurryThis$
|
|
7549
|
+
var stringSlice$3 = uncurryThis$6(''.slice);
|
|
7651
7550
|
var min$2 = Math.min;
|
|
7652
7551
|
|
|
7653
7552
|
var CORRECT_IS_REGEXP_LOGIC$1 = correctIsRegExpLogic$1('startsWith');
|
|
@@ -7659,7 +7558,7 @@ var MDN_POLYFILL_BUG$1 = !CORRECT_IS_REGEXP_LOGIC$1 && !!function () {
|
|
|
7659
7558
|
|
|
7660
7559
|
// `String.prototype.startsWith` method
|
|
7661
7560
|
// https://tc39.es/ecma262/#sec-string.prototype.startswith
|
|
7662
|
-
$$
|
|
7561
|
+
$$9({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG$1 && !CORRECT_IS_REGEXP_LOGIC$1 }, {
|
|
7663
7562
|
startsWith: function startsWith(searchString /* , position = 0 */) {
|
|
7664
7563
|
var that = toString$3(requireObjectCoercible$2(this));
|
|
7665
7564
|
notARegExp$1(searchString);
|
|
@@ -7669,8 +7568,8 @@ $$8({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG$1 && !CORRECT_IS_
|
|
|
7669
7568
|
}
|
|
7670
7569
|
});
|
|
7671
7570
|
|
|
7672
|
-
var $$
|
|
7673
|
-
var uncurryThis$
|
|
7571
|
+
var $$8 = _export;
|
|
7572
|
+
var uncurryThis$5 = functionUncurryThisClause;
|
|
7674
7573
|
var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
|
|
7675
7574
|
var toLength$1 = toLength$6;
|
|
7676
7575
|
var toString$2 = toString$c;
|
|
@@ -7678,7 +7577,7 @@ var notARegExp = notARegexp;
|
|
|
7678
7577
|
var requireObjectCoercible$1 = requireObjectCoercible$a;
|
|
7679
7578
|
var correctIsRegExpLogic = correctIsRegexpLogic;
|
|
7680
7579
|
|
|
7681
|
-
var slice = uncurryThis$
|
|
7580
|
+
var slice = uncurryThis$5(''.slice);
|
|
7682
7581
|
var min$1 = Math.min;
|
|
7683
7582
|
|
|
7684
7583
|
var CORRECT_IS_REGEXP_LOGIC = correctIsRegExpLogic('endsWith');
|
|
@@ -7690,7 +7589,7 @@ var MDN_POLYFILL_BUG = !CORRECT_IS_REGEXP_LOGIC && !!function () {
|
|
|
7690
7589
|
|
|
7691
7590
|
// `String.prototype.endsWith` method
|
|
7692
7591
|
// https://tc39.es/ecma262/#sec-string.prototype.endswith
|
|
7693
|
-
$$
|
|
7592
|
+
$$8({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, {
|
|
7694
7593
|
endsWith: function endsWith(searchString /* , endPosition = @length */) {
|
|
7695
7594
|
var that = toString$2(requireObjectCoercible$1(this));
|
|
7696
7595
|
notARegExp(searchString);
|
|
@@ -8937,7 +8836,7 @@ function authClaims(authClaimsUpdate) {
|
|
|
8937
8836
|
}
|
|
8938
8837
|
|
|
8939
8838
|
var isCallable$5 = isCallable$n;
|
|
8940
|
-
var isObject$
|
|
8839
|
+
var isObject$3 = isObject$c;
|
|
8941
8840
|
var setPrototypeOf$1 = objectSetPrototypeOf;
|
|
8942
8841
|
|
|
8943
8842
|
// makes subclassing work correct for wrapped built-ins
|
|
@@ -8949,7 +8848,7 @@ var inheritIfRequired$1 = function ($this, dummy, Wrapper) {
|
|
|
8949
8848
|
// we haven't completely correct pre-ES6 way for getting `new.target`, so use this
|
|
8950
8849
|
isCallable$5(NewTarget = dummy.constructor) &&
|
|
8951
8850
|
NewTarget !== Wrapper &&
|
|
8952
|
-
isObject$
|
|
8851
|
+
isObject$3(NewTargetPrototype = NewTarget.prototype) &&
|
|
8953
8852
|
NewTargetPrototype !== Wrapper.prototype
|
|
8954
8853
|
) setPrototypeOf$1($this, NewTargetPrototype);
|
|
8955
8854
|
return $this;
|
|
@@ -8967,16 +8866,16 @@ var proxyAccessor$1 = function (Target, Source, key) {
|
|
|
8967
8866
|
|
|
8968
8867
|
var getBuiltIn$2 = getBuiltIn$7;
|
|
8969
8868
|
var defineBuiltInAccessor = defineBuiltInAccessor$2;
|
|
8970
|
-
var wellKnownSymbol$
|
|
8869
|
+
var wellKnownSymbol$7 = wellKnownSymbol$k;
|
|
8971
8870
|
var DESCRIPTORS$2 = descriptors;
|
|
8972
8871
|
|
|
8973
|
-
var SPECIES$
|
|
8872
|
+
var SPECIES$2 = wellKnownSymbol$7('species');
|
|
8974
8873
|
|
|
8975
8874
|
var setSpecies$2 = function (CONSTRUCTOR_NAME) {
|
|
8976
8875
|
var Constructor = getBuiltIn$2(CONSTRUCTOR_NAME);
|
|
8977
8876
|
|
|
8978
|
-
if (DESCRIPTORS$2 && Constructor && !Constructor[SPECIES$
|
|
8979
|
-
defineBuiltInAccessor(Constructor, SPECIES$
|
|
8877
|
+
if (DESCRIPTORS$2 && Constructor && !Constructor[SPECIES$2]) {
|
|
8878
|
+
defineBuiltInAccessor(Constructor, SPECIES$2, {
|
|
8980
8879
|
configurable: true,
|
|
8981
8880
|
get: function () { return this; }
|
|
8982
8881
|
});
|
|
@@ -8985,7 +8884,7 @@ var setSpecies$2 = function (CONSTRUCTOR_NAME) {
|
|
|
8985
8884
|
|
|
8986
8885
|
var DESCRIPTORS$1 = descriptors;
|
|
8987
8886
|
var global$7 = global$o;
|
|
8988
|
-
var uncurryThis$
|
|
8887
|
+
var uncurryThis$4 = functionUncurryThis;
|
|
8989
8888
|
var isForced$1 = isForced_1;
|
|
8990
8889
|
var inheritIfRequired = inheritIfRequired$1;
|
|
8991
8890
|
var createNonEnumerableProperty = createNonEnumerableProperty$6;
|
|
@@ -9002,19 +8901,19 @@ var fails$2 = fails$p;
|
|
|
9002
8901
|
var hasOwn$1 = hasOwnProperty_1;
|
|
9003
8902
|
var enforceInternalState = internalState.enforce;
|
|
9004
8903
|
var setSpecies$1 = setSpecies$2;
|
|
9005
|
-
var wellKnownSymbol$
|
|
8904
|
+
var wellKnownSymbol$6 = wellKnownSymbol$k;
|
|
9006
8905
|
var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
|
|
9007
8906
|
var UNSUPPORTED_NCG = regexpUnsupportedNcg;
|
|
9008
8907
|
|
|
9009
|
-
var MATCH = wellKnownSymbol$
|
|
8908
|
+
var MATCH = wellKnownSymbol$6('match');
|
|
9010
8909
|
var NativeRegExp = global$7.RegExp;
|
|
9011
8910
|
var RegExpPrototype = NativeRegExp.prototype;
|
|
9012
8911
|
var SyntaxError = global$7.SyntaxError;
|
|
9013
|
-
var exec = uncurryThis$
|
|
9014
|
-
var charAt$1 = uncurryThis$
|
|
9015
|
-
var replace$1 = uncurryThis$
|
|
9016
|
-
var stringIndexOf$1 = uncurryThis$
|
|
9017
|
-
var stringSlice$2 = uncurryThis$
|
|
8912
|
+
var exec = uncurryThis$4(RegExpPrototype.exec);
|
|
8913
|
+
var charAt$1 = uncurryThis$4(''.charAt);
|
|
8914
|
+
var replace$1 = uncurryThis$4(''.replace);
|
|
8915
|
+
var stringIndexOf$1 = uncurryThis$4(''.indexOf);
|
|
8916
|
+
var stringSlice$2 = uncurryThis$4(''.slice);
|
|
9018
8917
|
// TODO: Use only proper RegExpIdentifierName
|
|
9019
8918
|
var IS_NCG = /^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/;
|
|
9020
8919
|
var re1 = /a/g;
|
|
@@ -9175,24 +9074,24 @@ if (isForced$1('RegExp', BASE_FORCED)) {
|
|
|
9175
9074
|
// https://tc39.es/ecma262/#sec-get-regexp-@@species
|
|
9176
9075
|
setSpecies$1('RegExp');
|
|
9177
9076
|
|
|
9178
|
-
var NATIVE_BIND = functionBindNative;
|
|
9077
|
+
var NATIVE_BIND$1 = functionBindNative;
|
|
9179
9078
|
|
|
9180
9079
|
var FunctionPrototype = Function.prototype;
|
|
9181
9080
|
var apply$2 = FunctionPrototype.apply;
|
|
9182
9081
|
var call$7 = FunctionPrototype.call;
|
|
9183
9082
|
|
|
9184
9083
|
// eslint-disable-next-line es/no-reflect -- safe
|
|
9185
|
-
var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call$7.bind(apply$2) : function () {
|
|
9084
|
+
var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$7.bind(apply$2) : function () {
|
|
9186
9085
|
return call$7.apply(apply$2, arguments);
|
|
9187
9086
|
});
|
|
9188
9087
|
|
|
9189
|
-
var uncurryThis$
|
|
9190
|
-
var toObject = toObject$7;
|
|
9088
|
+
var uncurryThis$3 = functionUncurryThis;
|
|
9089
|
+
var toObject$1 = toObject$7;
|
|
9191
9090
|
|
|
9192
9091
|
var floor = Math.floor;
|
|
9193
|
-
var charAt = uncurryThis$
|
|
9194
|
-
var replace = uncurryThis$
|
|
9195
|
-
var stringSlice$1 = uncurryThis$
|
|
9092
|
+
var charAt = uncurryThis$3(''.charAt);
|
|
9093
|
+
var replace = uncurryThis$3(''.replace);
|
|
9094
|
+
var stringSlice$1 = uncurryThis$3(''.slice);
|
|
9196
9095
|
// eslint-disable-next-line redos/no-vulnerable -- safe
|
|
9197
9096
|
var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
|
|
9198
9097
|
var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
|
|
@@ -9204,7 +9103,7 @@ var getSubstitution$1 = function (matched, str, position, captures, namedCapture
|
|
|
9204
9103
|
var m = captures.length;
|
|
9205
9104
|
var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
|
|
9206
9105
|
if (namedCaptures !== undefined) {
|
|
9207
|
-
namedCaptures = toObject(namedCaptures);
|
|
9106
|
+
namedCaptures = toObject$1(namedCaptures);
|
|
9208
9107
|
symbols = SUBSTITUTION_SYMBOLS;
|
|
9209
9108
|
}
|
|
9210
9109
|
return replace(replacement, symbols, function (match, ch) {
|
|
@@ -9234,13 +9133,13 @@ var getSubstitution$1 = function (matched, str, position, captures, namedCapture
|
|
|
9234
9133
|
|
|
9235
9134
|
var apply$1 = functionApply;
|
|
9236
9135
|
var call$6 = functionCall;
|
|
9237
|
-
var uncurryThis$
|
|
9136
|
+
var uncurryThis$2 = functionUncurryThis;
|
|
9238
9137
|
var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
|
|
9239
9138
|
var fails$1 = fails$p;
|
|
9240
9139
|
var anObject$4 = anObject$g;
|
|
9241
9140
|
var isCallable$4 = isCallable$n;
|
|
9242
9141
|
var isNullOrUndefined$1 = isNullOrUndefined$7;
|
|
9243
|
-
var toIntegerOrInfinity = toIntegerOrInfinity$7;
|
|
9142
|
+
var toIntegerOrInfinity$1 = toIntegerOrInfinity$7;
|
|
9244
9143
|
var toLength = toLength$6;
|
|
9245
9144
|
var toString = toString$c;
|
|
9246
9145
|
var requireObjectCoercible = requireObjectCoercible$a;
|
|
@@ -9248,15 +9147,15 @@ var advanceStringIndex = advanceStringIndex$3;
|
|
|
9248
9147
|
var getMethod$2 = getMethod$6;
|
|
9249
9148
|
var getSubstitution = getSubstitution$1;
|
|
9250
9149
|
var regExpExec = regexpExecAbstract;
|
|
9251
|
-
var wellKnownSymbol$
|
|
9150
|
+
var wellKnownSymbol$5 = wellKnownSymbol$k;
|
|
9252
9151
|
|
|
9253
|
-
var REPLACE = wellKnownSymbol$
|
|
9152
|
+
var REPLACE = wellKnownSymbol$5('replace');
|
|
9254
9153
|
var max = Math.max;
|
|
9255
9154
|
var min = Math.min;
|
|
9256
|
-
var concat = uncurryThis$
|
|
9257
|
-
var push = uncurryThis$
|
|
9258
|
-
var stringIndexOf = uncurryThis$
|
|
9259
|
-
var stringSlice = uncurryThis$
|
|
9155
|
+
var concat = uncurryThis$2([].concat);
|
|
9156
|
+
var push = uncurryThis$2([].push);
|
|
9157
|
+
var stringIndexOf = uncurryThis$2(''.indexOf);
|
|
9158
|
+
var stringSlice = uncurryThis$2(''.slice);
|
|
9260
9159
|
|
|
9261
9160
|
var maybeToString = function (it) {
|
|
9262
9161
|
return it === undefined ? it : String(it);
|
|
@@ -9346,7 +9245,7 @@ fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNa
|
|
|
9346
9245
|
result = results[i];
|
|
9347
9246
|
|
|
9348
9247
|
var matched = toString(result[0]);
|
|
9349
|
-
var position = max(min(toIntegerOrInfinity(result.index), S.length), 0);
|
|
9248
|
+
var position = max(min(toIntegerOrInfinity$1(result.index), S.length), 0);
|
|
9350
9249
|
var captures = [];
|
|
9351
9250
|
var replacement;
|
|
9352
9251
|
// NOTE: This is equivalent to
|
|
@@ -9374,21 +9273,30 @@ fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNa
|
|
|
9374
9273
|
];
|
|
9375
9274
|
}, !REPLACE_SUPPORTS_NAMED_GROUPS || !REPLACE_KEEPS_$0 || REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE);
|
|
9376
9275
|
|
|
9377
|
-
var
|
|
9378
|
-
var uncurryThis = functionUncurryThis;
|
|
9379
|
-
var isArray = isArray$3;
|
|
9276
|
+
var classof$1 = classofRaw$2;
|
|
9380
9277
|
|
|
9381
|
-
|
|
9278
|
+
// `IsArray` abstract operation
|
|
9279
|
+
// https://tc39.es/ecma262/#sec-isarray
|
|
9280
|
+
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
9281
|
+
var isArray$3 = Array.isArray || function isArray(argument) {
|
|
9282
|
+
return classof$1(argument) === 'Array';
|
|
9283
|
+
};
|
|
9284
|
+
|
|
9285
|
+
var $$7 = _export;
|
|
9286
|
+
var uncurryThis$1 = functionUncurryThis;
|
|
9287
|
+
var isArray$2 = isArray$3;
|
|
9288
|
+
|
|
9289
|
+
var nativeReverse = uncurryThis$1([].reverse);
|
|
9382
9290
|
var test = [1, 2];
|
|
9383
9291
|
|
|
9384
9292
|
// `Array.prototype.reverse` method
|
|
9385
9293
|
// https://tc39.es/ecma262/#sec-array.prototype.reverse
|
|
9386
9294
|
// fix for Safari 12.0 bug
|
|
9387
9295
|
// https://bugs.webkit.org/show_bug.cgi?id=188794
|
|
9388
|
-
$$
|
|
9296
|
+
$$7({ target: 'Array', proto: true, forced: String(test) === String(test.reverse()) }, {
|
|
9389
9297
|
reverse: function reverse() {
|
|
9390
9298
|
// eslint-disable-next-line no-self-assign -- dirty hack
|
|
9391
|
-
if (isArray(this)) this.length = this.length;
|
|
9299
|
+
if (isArray$2(this)) this.length = this.length;
|
|
9392
9300
|
return nativeReverse(this);
|
|
9393
9301
|
}
|
|
9394
9302
|
});
|
|
@@ -11071,6 +10979,24 @@ function allObjectsAreEqual(values, fn) {
|
|
|
11071
10979
|
return true;
|
|
11072
10980
|
}
|
|
11073
10981
|
|
|
10982
|
+
/**
|
|
10983
|
+
* Refernce to a label string.
|
|
10984
|
+
*/
|
|
10985
|
+
|
|
10986
|
+
/**
|
|
10987
|
+
* Labeled value
|
|
10988
|
+
*/
|
|
10989
|
+
|
|
10990
|
+
/**
|
|
10991
|
+
* Creates a new Map of LabeledValue values.
|
|
10992
|
+
*
|
|
10993
|
+
* @param values
|
|
10994
|
+
* @returns
|
|
10995
|
+
*/
|
|
10996
|
+
function labeledValueMap(values) {
|
|
10997
|
+
return new Map(values.map(x => [x.value, x]));
|
|
10998
|
+
}
|
|
10999
|
+
|
|
11074
11000
|
/**
|
|
11075
11001
|
* Modifier key
|
|
11076
11002
|
*/
|
|
@@ -11232,17 +11158,31 @@ function urlWithoutParameters(url) {
|
|
|
11232
11158
|
|
|
11233
11159
|
var isPrototypeOf$1 = objectIsPrototypeOf;
|
|
11234
11160
|
|
|
11235
|
-
var $TypeError$
|
|
11161
|
+
var $TypeError$5 = TypeError;
|
|
11236
11162
|
|
|
11237
11163
|
var anInstance$1 = function (it, Prototype) {
|
|
11238
11164
|
if (isPrototypeOf$1(Prototype, it)) return it;
|
|
11239
|
-
throw new $TypeError$
|
|
11165
|
+
throw new $TypeError$5('Incorrect invocation');
|
|
11240
11166
|
};
|
|
11241
11167
|
|
|
11242
|
-
var
|
|
11168
|
+
var uncurryThis = functionUncurryThisClause;
|
|
11169
|
+
var aCallable$5 = aCallable$a;
|
|
11170
|
+
var NATIVE_BIND = functionBindNative;
|
|
11171
|
+
|
|
11172
|
+
var bind$5 = uncurryThis(uncurryThis.bind);
|
|
11173
|
+
|
|
11174
|
+
// optional / simple context binding
|
|
11175
|
+
var functionBindContext = function (fn, that) {
|
|
11176
|
+
aCallable$5(fn);
|
|
11177
|
+
return that === undefined ? fn : NATIVE_BIND ? bind$5(fn, that) : function (/* ...args */) {
|
|
11178
|
+
return fn.apply(that, arguments);
|
|
11179
|
+
};
|
|
11180
|
+
};
|
|
11181
|
+
|
|
11182
|
+
var $TypeError$4 = TypeError;
|
|
11243
11183
|
|
|
11244
11184
|
var validateArgumentsLength$1 = function (passed, required) {
|
|
11245
|
-
if (passed < required) throw new $TypeError$
|
|
11185
|
+
if (passed < required) throw new $TypeError$4('Not enough arguments');
|
|
11246
11186
|
return passed;
|
|
11247
11187
|
};
|
|
11248
11188
|
|
|
@@ -11253,7 +11193,7 @@ var engineIsIos = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent$2);
|
|
|
11253
11193
|
|
|
11254
11194
|
var global$6 = global$o;
|
|
11255
11195
|
var apply = functionApply;
|
|
11256
|
-
var bind$
|
|
11196
|
+
var bind$4 = functionBindContext;
|
|
11257
11197
|
var isCallable$3 = isCallable$n;
|
|
11258
11198
|
var hasOwn = hasOwnProperty_1;
|
|
11259
11199
|
var fails = fails$p;
|
|
@@ -11335,7 +11275,7 @@ if (!set || !clear) {
|
|
|
11335
11275
|
channel = new MessageChannel();
|
|
11336
11276
|
port = channel.port2;
|
|
11337
11277
|
channel.port1.onmessage = eventListener;
|
|
11338
|
-
defer = bind$
|
|
11278
|
+
defer = bind$4(port.postMessage, port);
|
|
11339
11279
|
// Browsers with postMessage, skip WebWorkers
|
|
11340
11280
|
// IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
|
|
11341
11281
|
} else if (
|
|
@@ -11416,7 +11356,7 @@ var engineIsWebosWebkit = /web0s(?!.*chrome)/i.test(userAgent);
|
|
|
11416
11356
|
|
|
11417
11357
|
var global$4 = global$o;
|
|
11418
11358
|
var safeGetBuiltIn = safeGetBuiltIn$1;
|
|
11419
|
-
var bind$
|
|
11359
|
+
var bind$3 = functionBindContext;
|
|
11420
11360
|
var macrotask = task$1.set;
|
|
11421
11361
|
var Queue$1 = queue$1;
|
|
11422
11362
|
var IS_IOS = engineIsIos;
|
|
@@ -11462,7 +11402,7 @@ if (!microtask$1) {
|
|
|
11462
11402
|
promise = Promise$1.resolve(undefined);
|
|
11463
11403
|
// workaround of WebKit ~ iOS Safari 10.1 bug
|
|
11464
11404
|
promise.constructor = Promise$1;
|
|
11465
|
-
then = bind$
|
|
11405
|
+
then = bind$3(promise.then, promise);
|
|
11466
11406
|
notify$1 = function () {
|
|
11467
11407
|
then(flush);
|
|
11468
11408
|
};
|
|
@@ -11479,7 +11419,7 @@ if (!microtask$1) {
|
|
|
11479
11419
|
// - setTimeout
|
|
11480
11420
|
} else {
|
|
11481
11421
|
// `webpack` dev server bug on IE global methods - use bind(fn, global)
|
|
11482
|
-
macrotask = bind$
|
|
11422
|
+
macrotask = bind$3(macrotask, global$4);
|
|
11483
11423
|
notify$1 = function () {
|
|
11484
11424
|
macrotask(flush);
|
|
11485
11425
|
};
|
|
@@ -11527,13 +11467,13 @@ var NativePromiseConstructor$3 = promiseNativeConstructor;
|
|
|
11527
11467
|
var isCallable$2 = isCallable$n;
|
|
11528
11468
|
var isForced = isForced_1;
|
|
11529
11469
|
var inspectSource = inspectSource$3;
|
|
11530
|
-
var wellKnownSymbol$
|
|
11470
|
+
var wellKnownSymbol$4 = wellKnownSymbol$k;
|
|
11531
11471
|
var IS_BROWSER = engineIsBrowser;
|
|
11532
11472
|
var IS_DENO = engineIsDeno;
|
|
11533
11473
|
var V8_VERSION = engineV8Version;
|
|
11534
11474
|
|
|
11535
11475
|
NativePromiseConstructor$3 && NativePromiseConstructor$3.prototype;
|
|
11536
|
-
var SPECIES = wellKnownSymbol$
|
|
11476
|
+
var SPECIES$1 = wellKnownSymbol$4('species');
|
|
11537
11477
|
var SUBCLASSING = false;
|
|
11538
11478
|
var NATIVE_PROMISE_REJECTION_EVENT$1 = isCallable$2(global$2.PromiseRejectionEvent);
|
|
11539
11479
|
|
|
@@ -11554,7 +11494,7 @@ var FORCED_PROMISE_CONSTRUCTOR$5 = isForced('Promise', function () {
|
|
|
11554
11494
|
exec(function () { /* empty */ }, function () { /* empty */ });
|
|
11555
11495
|
};
|
|
11556
11496
|
var constructor = promise.constructor = {};
|
|
11557
|
-
constructor[SPECIES] = FakePromise;
|
|
11497
|
+
constructor[SPECIES$1] = FakePromise;
|
|
11558
11498
|
SUBCLASSING = promise.then(function () { /* empty */ }) instanceof FakePromise;
|
|
11559
11499
|
if (!SUBCLASSING) return true;
|
|
11560
11500
|
// Unhandled rejections tracking support, NodeJS Promise without it fails @@species test
|
|
@@ -11571,12 +11511,12 @@ var newPromiseCapability$2 = {};
|
|
|
11571
11511
|
|
|
11572
11512
|
var aCallable$4 = aCallable$a;
|
|
11573
11513
|
|
|
11574
|
-
var $TypeError$
|
|
11514
|
+
var $TypeError$3 = TypeError;
|
|
11575
11515
|
|
|
11576
11516
|
var PromiseCapability = function (C) {
|
|
11577
11517
|
var resolve, reject;
|
|
11578
11518
|
this.promise = new C(function ($$resolve, $$reject) {
|
|
11579
|
-
if (resolve !== undefined || reject !== undefined) throw new $TypeError$
|
|
11519
|
+
if (resolve !== undefined || reject !== undefined) throw new $TypeError$3('Bad Promise constructor');
|
|
11580
11520
|
resolve = $$resolve;
|
|
11581
11521
|
reject = $$reject;
|
|
11582
11522
|
});
|
|
@@ -11590,7 +11530,7 @@ newPromiseCapability$2.f = function (C) {
|
|
|
11590
11530
|
return new PromiseCapability(C);
|
|
11591
11531
|
};
|
|
11592
11532
|
|
|
11593
|
-
var $$
|
|
11533
|
+
var $$6 = _export;
|
|
11594
11534
|
var IS_NODE = engineIsNode;
|
|
11595
11535
|
var global$1 = global$o;
|
|
11596
11536
|
var call$5 = functionCall;
|
|
@@ -11600,7 +11540,7 @@ var setToStringTag = setToStringTag$4;
|
|
|
11600
11540
|
var setSpecies = setSpecies$2;
|
|
11601
11541
|
var aCallable$3 = aCallable$a;
|
|
11602
11542
|
var isCallable$1 = isCallable$n;
|
|
11603
|
-
var isObject$
|
|
11543
|
+
var isObject$2 = isObject$c;
|
|
11604
11544
|
var anInstance = anInstance$1;
|
|
11605
11545
|
var speciesConstructor = speciesConstructor$2;
|
|
11606
11546
|
var task = task$1.set;
|
|
@@ -11642,7 +11582,7 @@ var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
|
|
|
11642
11582
|
// helpers
|
|
11643
11583
|
var isThenable = function (it) {
|
|
11644
11584
|
var then;
|
|
11645
|
-
return isObject$
|
|
11585
|
+
return isObject$2(it) && isCallable$1(then = it.then) ? then : false;
|
|
11646
11586
|
};
|
|
11647
11587
|
|
|
11648
11588
|
var callReaction = function (reaction, state) {
|
|
@@ -11739,7 +11679,7 @@ var onHandleUnhandled = function (state) {
|
|
|
11739
11679
|
});
|
|
11740
11680
|
};
|
|
11741
11681
|
|
|
11742
|
-
var bind$
|
|
11682
|
+
var bind$2 = function (fn, state, unwrap) {
|
|
11743
11683
|
return function (value) {
|
|
11744
11684
|
fn(state, value, unwrap);
|
|
11745
11685
|
};
|
|
@@ -11766,8 +11706,8 @@ var internalResolve = function (state, value, unwrap) {
|
|
|
11766
11706
|
var wrapper = { done: false };
|
|
11767
11707
|
try {
|
|
11768
11708
|
call$5(then, value,
|
|
11769
|
-
bind$
|
|
11770
|
-
bind$
|
|
11709
|
+
bind$2(internalResolve, wrapper, state),
|
|
11710
|
+
bind$2(internalReject, wrapper, state)
|
|
11771
11711
|
);
|
|
11772
11712
|
} catch (error) {
|
|
11773
11713
|
internalReject(wrapper, error, state);
|
|
@@ -11792,7 +11732,7 @@ if (FORCED_PROMISE_CONSTRUCTOR$4) {
|
|
|
11792
11732
|
call$5(Internal, this);
|
|
11793
11733
|
var state = getInternalPromiseState(this);
|
|
11794
11734
|
try {
|
|
11795
|
-
executor(bind$
|
|
11735
|
+
executor(bind$2(internalResolve, state), bind$2(internalReject, state));
|
|
11796
11736
|
} catch (error) {
|
|
11797
11737
|
internalReject(state, error);
|
|
11798
11738
|
}
|
|
@@ -11834,8 +11774,8 @@ if (FORCED_PROMISE_CONSTRUCTOR$4) {
|
|
|
11834
11774
|
var promise = new Internal();
|
|
11835
11775
|
var state = getInternalPromiseState(promise);
|
|
11836
11776
|
this.promise = promise;
|
|
11837
|
-
this.resolve = bind$
|
|
11838
|
-
this.reject = bind$
|
|
11777
|
+
this.resolve = bind$2(internalResolve, state);
|
|
11778
|
+
this.reject = bind$2(internalReject, state);
|
|
11839
11779
|
};
|
|
11840
11780
|
|
|
11841
11781
|
newPromiseCapabilityModule$3.f = newPromiseCapability$1 = function (C) {
|
|
@@ -11870,17 +11810,17 @@ if (FORCED_PROMISE_CONSTRUCTOR$4) {
|
|
|
11870
11810
|
}
|
|
11871
11811
|
}
|
|
11872
11812
|
|
|
11873
|
-
$$
|
|
11813
|
+
$$6({ global: true, constructor: true, wrap: true, forced: FORCED_PROMISE_CONSTRUCTOR$4 }, {
|
|
11874
11814
|
Promise: PromiseConstructor
|
|
11875
11815
|
});
|
|
11876
11816
|
|
|
11877
11817
|
setToStringTag(PromiseConstructor, PROMISE, false);
|
|
11878
11818
|
setSpecies(PROMISE);
|
|
11879
11819
|
|
|
11880
|
-
var wellKnownSymbol$
|
|
11820
|
+
var wellKnownSymbol$3 = wellKnownSymbol$k;
|
|
11881
11821
|
var Iterators$1 = iterators;
|
|
11882
11822
|
|
|
11883
|
-
var ITERATOR$2 = wellKnownSymbol$
|
|
11823
|
+
var ITERATOR$2 = wellKnownSymbol$3('iterator');
|
|
11884
11824
|
var ArrayPrototype = Array.prototype;
|
|
11885
11825
|
|
|
11886
11826
|
// check on default Array iterator
|
|
@@ -11892,9 +11832,9 @@ var classof = classof$6;
|
|
|
11892
11832
|
var getMethod$1 = getMethod$6;
|
|
11893
11833
|
var isNullOrUndefined = isNullOrUndefined$7;
|
|
11894
11834
|
var Iterators = iterators;
|
|
11895
|
-
var wellKnownSymbol$
|
|
11835
|
+
var wellKnownSymbol$2 = wellKnownSymbol$k;
|
|
11896
11836
|
|
|
11897
|
-
var ITERATOR$1 = wellKnownSymbol$
|
|
11837
|
+
var ITERATOR$1 = wellKnownSymbol$2('iterator');
|
|
11898
11838
|
|
|
11899
11839
|
var getIteratorMethod$2 = function (it) {
|
|
11900
11840
|
if (!isNullOrUndefined(it)) return getMethod$1(it, ITERATOR$1)
|
|
@@ -11908,12 +11848,12 @@ var anObject$3 = anObject$g;
|
|
|
11908
11848
|
var tryToString$1 = tryToString$5;
|
|
11909
11849
|
var getIteratorMethod$1 = getIteratorMethod$2;
|
|
11910
11850
|
|
|
11911
|
-
var $TypeError$
|
|
11851
|
+
var $TypeError$2 = TypeError;
|
|
11912
11852
|
|
|
11913
11853
|
var getIterator$1 = function (argument, usingIterator) {
|
|
11914
11854
|
var iteratorMethod = arguments.length < 2 ? getIteratorMethod$1(argument) : usingIterator;
|
|
11915
11855
|
if (aCallable$2(iteratorMethod)) return anObject$3(call$4(iteratorMethod, argument));
|
|
11916
|
-
throw new $TypeError$
|
|
11856
|
+
throw new $TypeError$2(tryToString$1(argument) + ' is not iterable');
|
|
11917
11857
|
};
|
|
11918
11858
|
|
|
11919
11859
|
var call$3 = functionCall;
|
|
@@ -11940,18 +11880,18 @@ var iteratorClose$1 = function (iterator, kind, value) {
|
|
|
11940
11880
|
return value;
|
|
11941
11881
|
};
|
|
11942
11882
|
|
|
11943
|
-
var bind = functionBindContext;
|
|
11883
|
+
var bind$1 = functionBindContext;
|
|
11944
11884
|
var call$2 = functionCall;
|
|
11945
11885
|
var anObject$1 = anObject$g;
|
|
11946
11886
|
var tryToString = tryToString$5;
|
|
11947
11887
|
var isArrayIteratorMethod = isArrayIteratorMethod$1;
|
|
11948
|
-
var lengthOfArrayLike = lengthOfArrayLike$6;
|
|
11888
|
+
var lengthOfArrayLike$2 = lengthOfArrayLike$6;
|
|
11949
11889
|
var isPrototypeOf = objectIsPrototypeOf;
|
|
11950
11890
|
var getIterator = getIterator$1;
|
|
11951
11891
|
var getIteratorMethod = getIteratorMethod$2;
|
|
11952
11892
|
var iteratorClose = iteratorClose$1;
|
|
11953
11893
|
|
|
11954
|
-
var $TypeError = TypeError;
|
|
11894
|
+
var $TypeError$1 = TypeError;
|
|
11955
11895
|
|
|
11956
11896
|
var Result = function (stopped, result) {
|
|
11957
11897
|
this.stopped = stopped;
|
|
@@ -11966,7 +11906,7 @@ var iterate$3 = function (iterable, unboundFunction, options) {
|
|
|
11966
11906
|
var IS_RECORD = !!(options && options.IS_RECORD);
|
|
11967
11907
|
var IS_ITERATOR = !!(options && options.IS_ITERATOR);
|
|
11968
11908
|
var INTERRUPTED = !!(options && options.INTERRUPTED);
|
|
11969
|
-
var fn = bind(unboundFunction, that);
|
|
11909
|
+
var fn = bind$1(unboundFunction, that);
|
|
11970
11910
|
var iterator, iterFn, index, length, result, next, step;
|
|
11971
11911
|
|
|
11972
11912
|
var stop = function (condition) {
|
|
@@ -11987,10 +11927,10 @@ var iterate$3 = function (iterable, unboundFunction, options) {
|
|
|
11987
11927
|
iterator = iterable;
|
|
11988
11928
|
} else {
|
|
11989
11929
|
iterFn = getIteratorMethod(iterable);
|
|
11990
|
-
if (!iterFn) throw new $TypeError(tryToString(iterable) + ' is not iterable');
|
|
11930
|
+
if (!iterFn) throw new $TypeError$1(tryToString(iterable) + ' is not iterable');
|
|
11991
11931
|
// optimisation for array iterators
|
|
11992
11932
|
if (isArrayIteratorMethod(iterFn)) {
|
|
11993
|
-
for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
|
|
11933
|
+
for (index = 0, length = lengthOfArrayLike$2(iterable); length > index; index++) {
|
|
11994
11934
|
result = callFn(iterable[index]);
|
|
11995
11935
|
if (result && isPrototypeOf(ResultPrototype, result)) return result;
|
|
11996
11936
|
} return new Result(false);
|
|
@@ -12009,9 +11949,9 @@ var iterate$3 = function (iterable, unboundFunction, options) {
|
|
|
12009
11949
|
} return new Result(false);
|
|
12010
11950
|
};
|
|
12011
11951
|
|
|
12012
|
-
var wellKnownSymbol = wellKnownSymbol$k;
|
|
11952
|
+
var wellKnownSymbol$1 = wellKnownSymbol$k;
|
|
12013
11953
|
|
|
12014
|
-
var ITERATOR = wellKnownSymbol('iterator');
|
|
11954
|
+
var ITERATOR = wellKnownSymbol$1('iterator');
|
|
12015
11955
|
var SAFE_CLOSING = false;
|
|
12016
11956
|
|
|
12017
11957
|
try {
|
|
@@ -12058,7 +11998,7 @@ var promiseStaticsIncorrectIteration = FORCED_PROMISE_CONSTRUCTOR$3 || !checkCor
|
|
|
12058
11998
|
NativePromiseConstructor$1.all(iterable).then(undefined, function () { /* empty */ });
|
|
12059
11999
|
});
|
|
12060
12000
|
|
|
12061
|
-
var $$
|
|
12001
|
+
var $$5 = _export;
|
|
12062
12002
|
var call$1 = functionCall;
|
|
12063
12003
|
var aCallable$1 = aCallable$a;
|
|
12064
12004
|
var newPromiseCapabilityModule$2 = newPromiseCapability$2;
|
|
@@ -12068,7 +12008,7 @@ var PROMISE_STATICS_INCORRECT_ITERATION$1 = promiseStaticsIncorrectIteration;
|
|
|
12068
12008
|
|
|
12069
12009
|
// `Promise.all` method
|
|
12070
12010
|
// https://tc39.es/ecma262/#sec-promise.all
|
|
12071
|
-
$$
|
|
12011
|
+
$$5({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION$1 }, {
|
|
12072
12012
|
all: function all(iterable) {
|
|
12073
12013
|
var C = this;
|
|
12074
12014
|
var capability = newPromiseCapabilityModule$2.f(C);
|
|
@@ -12097,7 +12037,7 @@ $$4({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION
|
|
|
12097
12037
|
}
|
|
12098
12038
|
});
|
|
12099
12039
|
|
|
12100
|
-
var $$
|
|
12040
|
+
var $$4 = _export;
|
|
12101
12041
|
var FORCED_PROMISE_CONSTRUCTOR$2 = promiseConstructorDetection.CONSTRUCTOR;
|
|
12102
12042
|
var NativePromiseConstructor = promiseNativeConstructor;
|
|
12103
12043
|
var getBuiltIn$1 = getBuiltIn$7;
|
|
@@ -12108,7 +12048,7 @@ var NativePromisePrototype = NativePromiseConstructor && NativePromiseConstructo
|
|
|
12108
12048
|
|
|
12109
12049
|
// `Promise.prototype.catch` method
|
|
12110
12050
|
// https://tc39.es/ecma262/#sec-promise.prototype.catch
|
|
12111
|
-
$$
|
|
12051
|
+
$$4({ target: 'Promise', proto: true, forced: FORCED_PROMISE_CONSTRUCTOR$2, real: true }, {
|
|
12112
12052
|
'catch': function (onRejected) {
|
|
12113
12053
|
return this.then(undefined, onRejected);
|
|
12114
12054
|
}
|
|
@@ -12122,7 +12062,7 @@ if (isCallable(NativePromiseConstructor)) {
|
|
|
12122
12062
|
}
|
|
12123
12063
|
}
|
|
12124
12064
|
|
|
12125
|
-
var $$
|
|
12065
|
+
var $$3 = _export;
|
|
12126
12066
|
var call = functionCall;
|
|
12127
12067
|
var aCallable = aCallable$a;
|
|
12128
12068
|
var newPromiseCapabilityModule$1 = newPromiseCapability$2;
|
|
@@ -12132,7 +12072,7 @@ var PROMISE_STATICS_INCORRECT_ITERATION = promiseStaticsIncorrectIteration;
|
|
|
12132
12072
|
|
|
12133
12073
|
// `Promise.race` method
|
|
12134
12074
|
// https://tc39.es/ecma262/#sec-promise.race
|
|
12135
|
-
$$
|
|
12075
|
+
$$3({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION }, {
|
|
12136
12076
|
race: function race(iterable) {
|
|
12137
12077
|
var C = this;
|
|
12138
12078
|
var capability = newPromiseCapabilityModule$1.f(C);
|
|
@@ -12148,13 +12088,13 @@ $$2({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION
|
|
|
12148
12088
|
}
|
|
12149
12089
|
});
|
|
12150
12090
|
|
|
12151
|
-
var $$
|
|
12091
|
+
var $$2 = _export;
|
|
12152
12092
|
var newPromiseCapabilityModule = newPromiseCapability$2;
|
|
12153
12093
|
var FORCED_PROMISE_CONSTRUCTOR$1 = promiseConstructorDetection.CONSTRUCTOR;
|
|
12154
12094
|
|
|
12155
12095
|
// `Promise.reject` method
|
|
12156
12096
|
// https://tc39.es/ecma262/#sec-promise.reject
|
|
12157
|
-
$$
|
|
12097
|
+
$$2({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
|
|
12158
12098
|
reject: function reject(r) {
|
|
12159
12099
|
var capability = newPromiseCapabilityModule.f(this);
|
|
12160
12100
|
var capabilityReject = capability.reject;
|
|
@@ -12164,19 +12104,19 @@ $$1({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
|
|
|
12164
12104
|
});
|
|
12165
12105
|
|
|
12166
12106
|
var anObject = anObject$g;
|
|
12167
|
-
var isObject = isObject$c;
|
|
12107
|
+
var isObject$1 = isObject$c;
|
|
12168
12108
|
var newPromiseCapability = newPromiseCapability$2;
|
|
12169
12109
|
|
|
12170
12110
|
var promiseResolve$1 = function (C, x) {
|
|
12171
12111
|
anObject(C);
|
|
12172
|
-
if (isObject(x) && x.constructor === C) return x;
|
|
12112
|
+
if (isObject$1(x) && x.constructor === C) return x;
|
|
12173
12113
|
var promiseCapability = newPromiseCapability.f(C);
|
|
12174
12114
|
var resolve = promiseCapability.resolve;
|
|
12175
12115
|
resolve(x);
|
|
12176
12116
|
return promiseCapability.promise;
|
|
12177
12117
|
};
|
|
12178
12118
|
|
|
12179
|
-
var
|
|
12119
|
+
var $$1 = _export;
|
|
12180
12120
|
var getBuiltIn = getBuiltIn$7;
|
|
12181
12121
|
var FORCED_PROMISE_CONSTRUCTOR = promiseConstructorDetection.CONSTRUCTOR;
|
|
12182
12122
|
var promiseResolve = promiseResolve$1;
|
|
@@ -12185,7 +12125,7 @@ getBuiltIn('Promise');
|
|
|
12185
12125
|
|
|
12186
12126
|
// `Promise.resolve` method
|
|
12187
12127
|
// https://tc39.es/ecma262/#sec-promise.resolve
|
|
12188
|
-
|
|
12128
|
+
$$1({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR }, {
|
|
12189
12129
|
resolve: function resolve(x) {
|
|
12190
12130
|
return promiseResolve(this, x);
|
|
12191
12131
|
}
|
|
@@ -13735,6 +13675,106 @@ function modifyModelMapFunction(mapFn, modifyModel, copy = true) {
|
|
|
13735
13675
|
} : mapFn;
|
|
13736
13676
|
}
|
|
13737
13677
|
|
|
13678
|
+
var $TypeError = TypeError;
|
|
13679
|
+
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
|
|
13680
|
+
|
|
13681
|
+
var doesNotExceedSafeInteger$1 = function (it) {
|
|
13682
|
+
if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
|
|
13683
|
+
return it;
|
|
13684
|
+
};
|
|
13685
|
+
|
|
13686
|
+
var isArray$1 = isArray$3;
|
|
13687
|
+
var lengthOfArrayLike$1 = lengthOfArrayLike$6;
|
|
13688
|
+
var doesNotExceedSafeInteger = doesNotExceedSafeInteger$1;
|
|
13689
|
+
var bind = functionBindContext;
|
|
13690
|
+
|
|
13691
|
+
// `FlattenIntoArray` abstract operation
|
|
13692
|
+
// https://tc39.github.io/proposal-flatMap/#sec-FlattenIntoArray
|
|
13693
|
+
var flattenIntoArray$1 = function (target, original, source, sourceLen, start, depth, mapper, thisArg) {
|
|
13694
|
+
var targetIndex = start;
|
|
13695
|
+
var sourceIndex = 0;
|
|
13696
|
+
var mapFn = mapper ? bind(mapper, thisArg) : false;
|
|
13697
|
+
var element, elementLen;
|
|
13698
|
+
|
|
13699
|
+
while (sourceIndex < sourceLen) {
|
|
13700
|
+
if (sourceIndex in source) {
|
|
13701
|
+
element = mapFn ? mapFn(source[sourceIndex], sourceIndex, original) : source[sourceIndex];
|
|
13702
|
+
|
|
13703
|
+
if (depth > 0 && isArray$1(element)) {
|
|
13704
|
+
elementLen = lengthOfArrayLike$1(element);
|
|
13705
|
+
targetIndex = flattenIntoArray$1(target, original, element, elementLen, targetIndex, depth - 1) - 1;
|
|
13706
|
+
} else {
|
|
13707
|
+
doesNotExceedSafeInteger(targetIndex + 1);
|
|
13708
|
+
target[targetIndex] = element;
|
|
13709
|
+
}
|
|
13710
|
+
|
|
13711
|
+
targetIndex++;
|
|
13712
|
+
}
|
|
13713
|
+
sourceIndex++;
|
|
13714
|
+
}
|
|
13715
|
+
return targetIndex;
|
|
13716
|
+
};
|
|
13717
|
+
|
|
13718
|
+
var flattenIntoArray_1 = flattenIntoArray$1;
|
|
13719
|
+
|
|
13720
|
+
var isArray = isArray$3;
|
|
13721
|
+
var isConstructor = isConstructor$2;
|
|
13722
|
+
var isObject = isObject$c;
|
|
13723
|
+
var wellKnownSymbol = wellKnownSymbol$k;
|
|
13724
|
+
|
|
13725
|
+
var SPECIES = wellKnownSymbol('species');
|
|
13726
|
+
var $Array = Array;
|
|
13727
|
+
|
|
13728
|
+
// a part of `ArraySpeciesCreate` abstract operation
|
|
13729
|
+
// https://tc39.es/ecma262/#sec-arrayspeciescreate
|
|
13730
|
+
var arraySpeciesConstructor$1 = function (originalArray) {
|
|
13731
|
+
var C;
|
|
13732
|
+
if (isArray(originalArray)) {
|
|
13733
|
+
C = originalArray.constructor;
|
|
13734
|
+
// cross-realm fallback
|
|
13735
|
+
if (isConstructor(C) && (C === $Array || isArray(C.prototype))) C = undefined;
|
|
13736
|
+
else if (isObject(C)) {
|
|
13737
|
+
C = C[SPECIES];
|
|
13738
|
+
if (C === null) C = undefined;
|
|
13739
|
+
}
|
|
13740
|
+
} return C === undefined ? $Array : C;
|
|
13741
|
+
};
|
|
13742
|
+
|
|
13743
|
+
var arraySpeciesConstructor = arraySpeciesConstructor$1;
|
|
13744
|
+
|
|
13745
|
+
// `ArraySpeciesCreate` abstract operation
|
|
13746
|
+
// https://tc39.es/ecma262/#sec-arrayspeciescreate
|
|
13747
|
+
var arraySpeciesCreate$1 = function (originalArray, length) {
|
|
13748
|
+
return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
|
|
13749
|
+
};
|
|
13750
|
+
|
|
13751
|
+
var $ = _export;
|
|
13752
|
+
var flattenIntoArray = flattenIntoArray_1;
|
|
13753
|
+
var toObject = toObject$7;
|
|
13754
|
+
var lengthOfArrayLike = lengthOfArrayLike$6;
|
|
13755
|
+
var toIntegerOrInfinity = toIntegerOrInfinity$7;
|
|
13756
|
+
var arraySpeciesCreate = arraySpeciesCreate$1;
|
|
13757
|
+
|
|
13758
|
+
// `Array.prototype.flat` method
|
|
13759
|
+
// https://tc39.es/ecma262/#sec-array.prototype.flat
|
|
13760
|
+
$({ target: 'Array', proto: true }, {
|
|
13761
|
+
flat: function flat(/* depthArg = 1 */) {
|
|
13762
|
+
var depthArg = arguments.length ? arguments[0] : undefined;
|
|
13763
|
+
var O = toObject(this);
|
|
13764
|
+
var sourceLen = lengthOfArrayLike(O);
|
|
13765
|
+
var A = arraySpeciesCreate(O, 0);
|
|
13766
|
+
A.length = flattenIntoArray(A, O, O, sourceLen, 0, depthArg === undefined ? 1 : toIntegerOrInfinity(depthArg));
|
|
13767
|
+
return A;
|
|
13768
|
+
}
|
|
13769
|
+
});
|
|
13770
|
+
|
|
13771
|
+
// this method was added to unscopables after implementation
|
|
13772
|
+
// in popular engines, so it's moved to a separate module
|
|
13773
|
+
var addToUnscopables = addToUnscopables$2;
|
|
13774
|
+
|
|
13775
|
+
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
13776
|
+
addToUnscopables('flat');
|
|
13777
|
+
|
|
13738
13778
|
// MARK: Loop
|
|
13739
13779
|
|
|
13740
13780
|
async function performTaskLoop(config) {
|
|
@@ -16243,4 +16283,4 @@ async function iterateFilteredPages(inputPage, loadFn, iterFn) {
|
|
|
16243
16283
|
return count;
|
|
16244
16284
|
}
|
|
16245
16285
|
|
|
16246
|
-
export { ALL_DOUBLE_SLASHES_REGEX, ALL_SLASHES_REGEX, ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX, ASSERTION_ERROR_CODE, ASSERTION_HANDLER, AUTH_ADMIN_ROLE, AUTH_ONBOARDED_ROLE, AUTH_ROLE_CLAIMS_DEFAULT_CLAIM_VALUE, AUTH_ROLE_CLAIMS_DEFAULT_EMPTY_VALUE, AUTH_TOS_SIGNED_ROLE, AUTH_USER_ROLE, AbstractUniqueModel, Assert, AssertMax, AssertMin, AssertionError, AssertionIssueHandler, BooleanKeyArrayUtilityInstance, BooleanStringKeyArrayUtilityInstance, CATCH_ALL_HANDLE_RESULT_KEY, CUT_VALUE_TO_ZERO_PRECISION, DATE_NOW_VALUE, DEFAULT_LAT_LNG_STRING_VALUE, DEFAULT_RANDOM_EMAIL_FACTORY_CONFIG, DEFAULT_RANDOM_PHONE_NUMBER_FACTORY_CONFIG, DEFAULT_READABLE_ERROR_CODE, DEFAULT_SLASH_PATH_ILLEGAL_CHARACTERS, DEFAULT_SLASH_PATH_ILLEGAL_CHARACTER_REPLACEMENT, DEFAULT_UNKNOWN_MODEL_TYPE_STRING, DOLLAR_AMOUNT_PRECISION, DOLLAR_AMOUNT_STRING_REGEX, DataDoesNotExistError, DataIsExpiredError, Day, DestroyFunctionObject, E164PHONE_NUMBER_REGEX, E164PHONE_NUMBER_WITH_EXTENSION_REGEX, E164PHONE_NUMBER_WITH_OPTIONAL_EXTENSION_REGEX, FINAL_PAGE, FIRST_PAGE, FRACTIONAL_HOURS_PRECISION_FUNCTION, FullStorageObject, HAS_WEBSITE_DOMAIN_NAME_REGEX, HOURS_IN_DAY, HTTP_OR_HTTPS_REGEX, HashSet, ISO8601_DAY_STRING_REGEX, ISO8601_DAY_STRING_START_REGEX, ISO_8601_DATE_STRING_REGEX, KeyValueTypleValueFilter, LAT_LNG_PATTERN, LAT_LNG_PATTERN_MAX_PRECISION, LAT_LONG_100KM_PRECISION, LAT_LONG_100M_PRECISION, LAT_LONG_10CM_PRECISION, LAT_LONG_10KM_PRECISION, LAT_LONG_10M_PRECISION, LAT_LONG_1CM_PRECISION, LAT_LONG_1KM_PRECISION, LAT_LONG_1MM_PRECISION, LAT_LONG_1M_PRECISION, LAT_LONG_GRAINS_OF_SAND_PRECISION, LEADING_SLASHES_REGEX, MAP_IDENTITY, MAX_BITWISE_SET_SIZE, MAX_LATITUDE_VALUE, MAX_LONGITUDE_VALUE, MINUTES_IN_DAY, MINUTES_IN_HOUR, MIN_LATITUDE_VALUE, MIN_LONGITUDE_VALUE, MONTH_DAY_SLASH_DATE_STRING_REGEX, MS_IN_DAY, MS_IN_HOUR, MS_IN_MINUTE, MS_IN_SECOND, MemoryStorageInstance, ModelRelationUtility, NOOP_MODIFIER, PHONE_EXTENSION_NUMBER_REGEX, PRIMATIVE_KEY_DENCODER_VALUE, PageCalculator, PropertyDescriptorUtility, REGEX_SPECIAL_CHARACTERS, REGEX_SPECIAL_CHARACTERS_SET, RelationChange, SECONDS_IN_MINUTE, SHARED_MEMORY_STORAGE, SLASH_PATH_FILE_TYPE_SEPARATOR, SLASH_PATH_SEPARATOR, SORT_VALUE_EQUAL, SORT_VALUE_GREATER_THAN, SORT_VALUE_LESS_THAN, ServerErrorResponse, SetDeltaChange, SimpleStorageObject, StorageObject, StorageObjectUtility, StoredDataError, SyncState, TOTAL_LATITUDE_RANGE, TOTAL_LONGITUDE_RANGE, TOTAL_SPAN_OF_LONGITUDE, TRAILING_FILE_TYPE_SEPARATORS_REGEX, TRAILING_SLASHES_REGEX, TimeAM, TimerCancelledError, TimerInstance, TypedServiceRegistryInstance, UNLOADED_PAGE, US_STATE_CODE_STRING_REGEX, UTC_DATE_STRING_REGEX, UTC_TIMEZONE_STRING, UTF_8_START_CHARACTER, UTF_PRIVATE_USAGE_AREA_START, UnauthorizedServerErrorResponse, WEB_PROTOCOL_PREFIX_REGEX, ZIP_CODE_STRING_REGEX, addHttpToUrl, addLatLngPoints, addModifiers, addPlusPrefixToNumber, addPrefix, addPrefixFunction, addSuffix, addSuffixFunction, addToSet, addToSetCopy, allFalsyOrEmptyKeys, allIndexesInIndexRange, allKeyValueTuples, allMaybeSoKeys, allNonUndefinedKeys, allObjectsAreEqual, allValuesAreMaybeNot, allValuesAreNotMaybe, allowValueOnceFilter, applyBestFit, applyToMultipleFields, approximateTimerEndDate, areEqualContext, areEqualPOJOValues, arrayContainsDuplicateValue, arrayContentsDiffer, arrayDecision, arrayDecisionFunction, arrayFactory, arrayInputFactory, arrayToLowercase, arrayToMap, arrayToObject, arrayToUppercase, asArray, asDecisionFunction, asGetter, asIndexRangeCheckFunctionConfig, asIterable, asNumber, asObjectCopyFactory, asPromise, asSet, assignValuesToPOJO, assignValuesToPOJOFunction, authClaims, authRoleClaimsService, authRolesSetHasRoles, baseWebsiteUrl, batch, batchCalc, bitwiseObjectDencoder, bitwiseObjectEncoder, bitwiseObjectdecoder, bitwiseSetDecoder, bitwiseSetDencoder, booleanFactory, boundNumber, boundNumberFunction, boundToRectangle, build, cachedGetter, capLatValue, capitalizeFirstLetter, caseInsensitiveFilterByIndexOfDecisionFactory, caseInsensitiveString, catchAllHandlerKey, chainMapFunction, chainMapSameFunctions, coerceToEmailParticipants, combineMaps, compareEqualityWithValueFromItemsFunction, compareEqualityWithValueFromItemsFunctionFactory, compareFnOrder, compareWithMappedValuesFunction, computeNextFractionalHour, computeNextFreeIndexFunction, concatArrays, concatArraysUnique, containsAllStringsAnyCase, containsAllValues, containsAnyStringAnyCase, containsAnyValue, containsAnyValueFromSet, containsNoValueFromSet, containsNoneOfValue, containsStringAnyCase, convertEmailParticipantStringToParticipant, convertMaybeToArray, convertParticipantToEmailParticipantString, convertToArray, copyArray, copyField, copyLatLngBound, copyLatLngPoint, copyObject, copySetAndDo, countAllInNestedArray, countPOJOKeys, countPOJOKeysFunction, cronExpressionRepeatingEveryNMinutes, cssClassesSet, cutToPrecision, cutValueToInteger, cutValueToPrecision, cutValueToPrecisionFunction, dateFromLogicalDate, dayOfWeek, daysOfWeekArray, daysOfWeekFromEnabledDays, daysOfWeekNameFunction, daysOfWeekNameMap, decisionFunction, decodeHashedValues, decodeHashedValuesWithDecodeMap, decodeModelKeyTypePair, defaultFilterFromPOJOFunctionNoCopy, defaultForwardFunctionFactory, defaultLatLngPoint, defaultLatLngString, dencodeBitwiseSet, diffLatLngBoundPoints, diffLatLngPoints, dollarAmountString, e164PhoneNumberExtensionPair, e164PhoneNumberFromE164PhoneNumberExtensionPair, enabledDaysFromDaysOfWeek, encodeBitwiseSet, encodeModelKeyTypePair, errorMessageContainsString, errorMessageContainsStringFunction, escapeStringForRegex, excludeValues, excludeValuesFromArray, excludeValuesFromSet, existsInIterable, expandArrayMapTuples, expandArrayValueTuples, expandFlattenTreeFunction, expandIndexSet, expandTreeFunction, expandTrees, extendLatLngBound, filterAndMapFunction, filterEmptyValues, filterFalsyAndEmptyValues, filterFromIterable, filterFromPOJO, filterFromPOJOFunction, filterKeyValueTupleFunction, filterKeyValueTuples, filterKeyValueTuplesFunction, filterKeyValueTuplesInputToFilter, filterMaybeValues, filterNullAndUndefinedValues, filterOnlyUndefinedValues, filterUndefinedValues, filterUniqueCaseInsensitiveStrings, filterUniqueFunction, filterUniqueTransform, filterUniqueValues, filterValuesByDistance, filterValuesByDistanceNoOrder, filterValuesToSet, filterValuesUsingSet, filteredPage, findAllCharacterOccurences, findAllCharacterOccurencesFunction, findBest, findBestIndexMatch, findBestIndexMatchFunction, findBestIndexSetPair, findFirstCharacterOccurence, findInIterable, findIndexOfFirstDuplicateValue, findItemsByIndex, findNext, findPOJOKeys, findPOJOKeysFunction, findStringsRegexString, findToIndexSet, findValuesFrom, firstAndLastCharacterOccurrence, firstAndLastValue, firstValue, firstValueFromIterable, fitToIndexRangeFunction, fixExtraQueryParameters, fixMultiSlashesInSlashPath, flattenArray, flattenArrayOrValueArray, flattenArrayToSet, flattenArrayUnique, flattenArrayUniqueCaseInsensitiveStrings, flattenTree, flattenTreeToArray, flattenTreeToArrayFunction, flattenTrees, forEachInIterable, forEachKeyValue, forEachKeyValueOnPOJOFunction, forEachWithArray, forwardFunction, fractionalHoursToMinutes, generateIfDoesNotExist, getArrayNextIndex, getDayOffset, getDayTomorrow, getDayYesterday, getDaysOfWeekNames, getFunctionType, getNextDay, getNextPageNumber, getOverlappingRectangle, getPageNumber, getPreviousDay, getValueFromGetter, groupValues, handlerBindAccessor, handlerConfigurerFactory, handlerFactory, handlerMappedSetFunction, handlerMappedSetFunctionFactory, handlerSetFunction, hasDifferentStringsNoCase, hasDifferentValues, hasHttpPrefix, hasNonNullValue, hasSameTimezone, hasSameValues, hasValueFunction, hasValueOrNotEmpty, hasValueOrNotEmptyObject, hasWebsiteDomain, hashSetForIndexed, hourToFractionalHour, idBatchFactory, incrementingNumberFactory, indexDeltaGroup, indexDeltaGroupFunction, indexRange, indexRangeCheckFunction, indexRangeCheckReaderFunction, indexRangeForArray, indexRangeOverlapsIndexRange, indexRangeOverlapsIndexRangeFunction, indexRangeReaderPairFactory, indexedValuesArrayAccessorFactory, insertIntoBooleanKeyArray, invertBooleanReturnFunction, invertDecision, invertFilter, isAllowed, isClassLikeType, isCompleteUnitedStatesAddress, isConsideredUtcTimezoneString, isDate, isDefaultLatLngPoint, isDefaultLatLngPointValue, isDefaultReadableError, isDefinedAndNotFalse, isDollarAmountString, isE164PhoneNumber, isE164PhoneNumberWithExtension, isEmptyIterable, isEqualContext, isEqualToValueDecisionFunction, isEvenNumber, isFalseBooleanKeyArray, isFinalPage, isGetter, isISO8601DateString, isISO8601DayString, isISO8601DayStringStart, isInAllowedDaysOfWeekSet, isInNumberBoundFunction, isInSetDecisionFunction, isIndexNumberInIndexRange, isIndexNumberInIndexRangeFunction, isIndexRangeInIndexRange, isIndexRangeInIndexRangeFunction, isIterable, isLatLngBound, isLatLngBoundWithinLatLngBound, isLatLngPoint, isLatLngPointWithinLatLngBound, isLatLngString, isLogicalDateStringCode, isMapIdentityFunction, isMaybeNot, isMaybeNotOrTrue, isMaybeSo, isModelKey, isMonthDaySlashDate, isNonClassFunction, isNotNullOrEmptyString, isNumberDivisibleBy, isObjectWithConstructor, isOddNumber, isPromise, isPromiseLike, isSameLatLngBound, isSameLatLngPoint, isSameNonNullValue, isSameVector, isSelectedDecisionFunctionFactory, isSelectedIndexDecisionFunction, isServerError, isSlashPathFile, isSlashPathFolder, isSlashPathTypedFile, isStringOrTrue, isTrueBooleanKeyArray, isUTCDateString, isUsStateCodeString, isValidLatLngPoint, isValidLatitude, isValidLongitude, isValidNumberBound, isValidPhoneExtensionNumber, isValidSlashPath, isWebsiteUrl, isWebsiteUrlWithPrefix, isWithinLatLngBoundFunction, isolateSlashPath, isolateSlashPathFunction, isolateWebsitePathFunction, itemCountForBatchIndex, iterableToArray, iterableToMap, iterablesAreSetEquivalent, iterate, iterateFilteredPages, joinHostAndPort, joinStringsWithSpaces, keepCharactersAfterFirstCharacterOccurence, keepCharactersAfterFirstCharacterOccurenceFunction, keepFromSetCopy, keepValuesFromArray, keepValuesFromSet, keyValueMapFactory, lastValue, latLngBound, latLngBoundCenterPoint, latLngBoundEastBound, latLngBoundFromInput, latLngBoundFullyWrapsMap, latLngBoundFunction, latLngBoundNorthBound, latLngBoundNorthEastPoint, latLngBoundNorthWestPoint, latLngBoundOverlapsLatLngBound, latLngBoundSouthBound, latLngBoundSouthEastPoint, latLngBoundSouthWestPoint, latLngBoundStrictlyWrapsMap, latLngBoundTuple, latLngBoundTupleFunction, latLngBoundWestBound, latLngBoundWrapsMap, latLngDataPointFunction, latLngPoint, latLngPointFromString, latLngPointFunction, latLngPointPrecisionFunction, latLngString, latLngStringFunction, latLngTuple, latLngTupleFunction, limitArray, lonLatTuple, lowercaseFirstLetter, mailToUrlString, makeBestFit, makeCopyModelFieldFunction, makeDateMonthForMonthOfYear, makeGetter, makeHandler, makeHashDecodeMap, makeKeyPairs, makeModelConversionFieldValuesFunction, makeModelMap, makeModelMapFunctions, makeMultiModelKeyMap, makeValuesGroupMap, makeWithFactory, makeWithFactoryInput, mapArrayFunction, mapFunctionOutput, mapFunctionOutputPair, mapGetter, mapGetterFactory, mapIdentityFunction, mapIterable, mapKeysIntersectionObjectToArray, mapMaybeFunction, mapObjectMap, mapObjectMapFunction, mapObjectToTargetObject, mapPromiseOrValue, mapToObject, mapToTuples, mapValuesToSet, mappedUseAsyncFunction, mappedUseFunction, mapsHaveSameKeys, maybeMergeModelModifiers, maybeMergeModifiers, maybeModifierMapToFunction, maybeSet, mergeArrayIntoArray, mergeArrayOrValueIntoArray, mergeArrays, mergeArraysIntoArray, mergeFilterFunctions, mergeIntoArray, mergeModifiers, mergeObjects, mergeObjectsFunction, mergeSlashPaths, messageFromError, minAndMaxFunction, minAndMaxIndex, minAndMaxIndexFunction, minAndMaxIndexItemsFunction, minAndMaxNumber, minutesToFractionalHours, modelFieldConversions, modelFieldMapFunction, modelFieldMapFunctions, modelTypeDataPairFactory, modifier, modifierMapToFunction, modifyModelMapFunction, modifyModelMapFunctions, monthDaySlashDateToDateString, monthOfYearFromDate, monthOfYearFromDateMonth, multiKeyValueMapFactory, multiValueMapBuilder, neMostLatLngPoint, nearestDivisibleValues, objectCopyFactory, objectDeltaArrayCompressor, objectFieldEqualityChecker, objectFlatMergeMatrix, objectHasKey, objectHasKeys, objectHasNoKeys, objectIsEmpty, objectKeyEqualityComparatorFunction, objectKeysEqualityComparatorFunction, objectMergeMatrix, objectToMap, objectToTuples, overlapsLatLngBoundFunction, overrideInObject, overrideInObjectFunctionFactory, pairGroupValues, parseISO8601DayStringToUTCDate, partialServerError, passThrough, percentNumberFromDecimal, percentNumberToDecimal, performAsyncTask, performAsyncTasks, performBatchLoop, performMakeLoop, performTaskCountLoop, performTaskLoop, performTasksFromFactoryInParallelFunction, performTasksInParallel, performTasksInParallelFunction, pickOneRandomly, poll, primativeKeyDencoder, primativeKeyDencoderMap, primativeKeyStringDencoder, primativeValuesDelta, promiseReference, protectedFactory, pushArrayItemsIntoArray, pushElementOntoArray, pushItemOrArrayItemsIntoArray, randomArrayFactory, randomArrayIndex, randomBoolean, randomEmailFactory, randomFromArrayFactory, randomLatLngFactory, randomLatLngFromCenterFactory, randomNumber, randomNumberFactory, randomPhoneNumberFactory, randomPickFactory, range, rangedIndexedValuesArrayAccessorFactory, rangedIndexedValuesArrayAccessorInfoFactory, readBooleanKeySafetyWrap, readDomainFromEmailAddress, readDomainsFromEmailAddresses, readEmailDomainFromUrlOrEmailAddress, readIndexNumber, readKeysFrom, readKeysFromFilterUniqueFunctionAdditionalKeys, readKeysFromFilterUniqueFunctionAdditionalKeysInput, readKeysFunction, readKeysSetFrom, readKeysSetFunction, readKeysToMap, readModelKey, readModelKeyFromObject, readModelKeys, readModelKeysFromObjects, readMultipleKeysToMap, readUniqueModelKey, readableError, readableStreamToBase64, readableStreamToBuffer, readableStreamToStringFunction, rectangleOverlapsRectangle, reduceBooleansFn, reduceBooleansWithAnd, reduceBooleansWithAndFn, reduceBooleansWithOr, reduceBooleansWithOrFn, reduceNumbers, reduceNumbersFn, reduceNumbersWithAdd, reduceNumbersWithAddFn, reduceNumbersWithMax, reduceNumbersWithMaxFn, reduceNumbersWithMin, reduceNumbersWithMinFn, removeByKeyFromBooleanKeyArray, removeCharactersAfterFirstCharacterOccurence, removeCharactersAfterFirstCharacterOccurenceFunction, removeExtensionFromPhoneNumber, removeFromBooleanKeyArray, removeFromSet, removeFromSetCopy, removeHttpFromUrl, removeModelsWithKey, removeModelsWithSameKey, removeModifiers, removeTrailingFileTypeSeparators, removeTrailingSlashes, removeWebProtocolPrefix, repeatString, replaceCharacterAtIndexIf, replaceCharacterAtIndexWith, replaceInvalidFilePathTypeSeparatorsInSlashPath, replaceInvalidFilePathTypeSeparatorsInSlashPathFunction, replaceLastCharacterIf, replaceLastCharacterIfIsFunction, replaceMultipleFilePathsInSlashPath, replaceStringsFunction, requireModelKey, restoreOrder, restoreOrderWithValues, reverseCompareFn, roundNumberToStepFunction, roundNumberUpToStep, roundToPrecision, roundToPrecisionFunction, roundingFunction, runAsyncTaskForValue, runAsyncTasksForValues, safeCompareEquality, safeEqualityComparatorFunction, safeFindBestIndexMatch, searchStringFilterFunction, separateValues, separateValuesToSets, serverError, setContainsAllValues, setContainsAnyValue, setContainsNoneOfValue, setDeltaChangeKeys, setDeltaFunction, setHasValueFunction, setIncludes, setIncludesFunction, setKeysOnMap, setWebProtocolPrefix, setsAreEquivalent, simpleSortValuesFunctionWithSortRef, slashPathFactory, slashPathInvalidError, slashPathName, slashPathParts, slashPathStartTypeFactory, slashPathType, slashPathValidationFactory, sliceIndexRangeFunction, sortAscendingIndexNumberRefFunction, sortByIndexAscendingCompareFunction, sortByIndexRangeAscendingCompareFunction, sortByLabelFunction, sortByNumberFunction, sortByStringFunction, sortCompareNumberFunction, sortNumbersAscendingFunction, sortValues, sortValuesFunctionOrMapIdentityWithSortRef, sortValuesFunctionWithSortRef, spaceSeparatedCssClasses, splitCommaSeparatedString, splitCommaSeparatedStringToSet, splitJoinNameString, splitJoinRemainder, splitStringAtFirstCharacterOccurence, splitStringAtFirstCharacterOccurenceFunction, splitStringAtIndex, startOfDayForSystemDateInUTC, startOfDayForUTCDateInUTC, stepsFromIndex, stepsFromIndexFunction, stringFactoryFromFactory, stringToLowercaseFunction, stringToUppercaseFunction, stringTrimFunction, sumOfIntegersBetween, swMostLatLngPoint, symmetricDifferenceArray, symmetricDifferenceArrayBetweenSets, symmetricDifferenceWithModels, takeFront, takeLast, takeValuesFromIterable, telUrlString, telUrlStringForE164PhoneNumberPair, terminatingFactoryFromArray, throwKeyIsRequired, timePeriodCounter, timer, toAbsoluteSlashPathStartType, toCaseInsensitiveStringArray, toModelFieldConversions, toModelMapFunctions, toReadableError, toRelativeSlashPathStartType, toggleInSet, toggleInSetCopy, toggleTimerRunning, transformNumberFunction, transformNumberFunctionConfig, transformStringFunction, transformStringFunctionConfig, transformStrings, trimArray, typedServiceRegistry, unique, uniqueCaseInsensitiveStrings, uniqueCaseInsensitiveStringsSet, uniqueKeys, uniqueModels, unitedStatesAddressString, urlWithoutParameters, useAsync, useCallback, useContextFunction, useIterableOrValue, useModelOrKey, usePromise, useValue, validLatLngPoint, validLatLngPointFunction, valueAtIndex, valuesAreBothNullishOrEquivalent, valuesFromPOJO, valuesFromPOJOFunction, vectorMinimumSizeResizeFunction, vectorsAreEqual, waitForMs, websiteDomainAndPathPair, websiteDomainAndPathPairFromWebsiteUrl, websitePathAndQueryPair, websitePathFromWebsiteDomainAndPath, websitePathFromWebsiteUrl, websiteUrlFromPaths, wrapIndexRangeFunction, wrapLatLngPoint, wrapLngValue, wrapMapFunctionOutput, wrapNumberFunction, wrapTuples, wrapUseAsyncFunction, wrapUseFunction };
|
|
16286
|
+
export { ALL_DOUBLE_SLASHES_REGEX, ALL_SLASHES_REGEX, ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX, ASSERTION_ERROR_CODE, ASSERTION_HANDLER, AUTH_ADMIN_ROLE, AUTH_ONBOARDED_ROLE, AUTH_ROLE_CLAIMS_DEFAULT_CLAIM_VALUE, AUTH_ROLE_CLAIMS_DEFAULT_EMPTY_VALUE, AUTH_TOS_SIGNED_ROLE, AUTH_USER_ROLE, AbstractUniqueModel, Assert, AssertMax, AssertMin, AssertionError, AssertionIssueHandler, BooleanKeyArrayUtilityInstance, BooleanStringKeyArrayUtilityInstance, CATCH_ALL_HANDLE_RESULT_KEY, CUT_VALUE_TO_ZERO_PRECISION, DATE_NOW_VALUE, DEFAULT_LAT_LNG_STRING_VALUE, DEFAULT_RANDOM_EMAIL_FACTORY_CONFIG, DEFAULT_RANDOM_PHONE_NUMBER_FACTORY_CONFIG, DEFAULT_READABLE_ERROR_CODE, DEFAULT_SLASH_PATH_ILLEGAL_CHARACTERS, DEFAULT_SLASH_PATH_ILLEGAL_CHARACTER_REPLACEMENT, DEFAULT_UNKNOWN_MODEL_TYPE_STRING, DOLLAR_AMOUNT_PRECISION, DOLLAR_AMOUNT_STRING_REGEX, DataDoesNotExistError, DataIsExpiredError, Day, DestroyFunctionObject, E164PHONE_NUMBER_REGEX, E164PHONE_NUMBER_WITH_EXTENSION_REGEX, E164PHONE_NUMBER_WITH_OPTIONAL_EXTENSION_REGEX, FINAL_PAGE, FIRST_PAGE, FRACTIONAL_HOURS_PRECISION_FUNCTION, FullStorageObject, HAS_WEBSITE_DOMAIN_NAME_REGEX, HOURS_IN_DAY, HTTP_OR_HTTPS_REGEX, HashSet, ISO8601_DAY_STRING_REGEX, ISO8601_DAY_STRING_START_REGEX, ISO_8601_DATE_STRING_REGEX, KeyValueTypleValueFilter, LAT_LNG_PATTERN, LAT_LNG_PATTERN_MAX_PRECISION, LAT_LONG_100KM_PRECISION, LAT_LONG_100M_PRECISION, LAT_LONG_10CM_PRECISION, LAT_LONG_10KM_PRECISION, LAT_LONG_10M_PRECISION, LAT_LONG_1CM_PRECISION, LAT_LONG_1KM_PRECISION, LAT_LONG_1MM_PRECISION, LAT_LONG_1M_PRECISION, LAT_LONG_GRAINS_OF_SAND_PRECISION, LEADING_SLASHES_REGEX, MAP_IDENTITY, MAX_BITWISE_SET_SIZE, MAX_LATITUDE_VALUE, MAX_LONGITUDE_VALUE, MINUTES_IN_DAY, MINUTES_IN_HOUR, MIN_LATITUDE_VALUE, MIN_LONGITUDE_VALUE, MONTH_DAY_SLASH_DATE_STRING_REGEX, MS_IN_DAY, MS_IN_HOUR, MS_IN_MINUTE, MS_IN_SECOND, MemoryStorageInstance, ModelRelationUtility, NOOP_MODIFIER, PHONE_EXTENSION_NUMBER_REGEX, PRIMATIVE_KEY_DENCODER_VALUE, PageCalculator, PropertyDescriptorUtility, REGEX_SPECIAL_CHARACTERS, REGEX_SPECIAL_CHARACTERS_SET, RelationChange, SECONDS_IN_MINUTE, SHARED_MEMORY_STORAGE, SLASH_PATH_FILE_TYPE_SEPARATOR, SLASH_PATH_SEPARATOR, SORT_VALUE_EQUAL, SORT_VALUE_GREATER_THAN, SORT_VALUE_LESS_THAN, ServerErrorResponse, SetDeltaChange, SimpleStorageObject, StorageObject, StorageObjectUtility, StoredDataError, SyncState, TOTAL_LATITUDE_RANGE, TOTAL_LONGITUDE_RANGE, TOTAL_SPAN_OF_LONGITUDE, TRAILING_FILE_TYPE_SEPARATORS_REGEX, TRAILING_SLASHES_REGEX, TimeAM, TimerCancelledError, TimerInstance, TypedServiceRegistryInstance, UNLOADED_PAGE, US_STATE_CODE_STRING_REGEX, UTC_DATE_STRING_REGEX, UTC_TIMEZONE_STRING, UTF_8_START_CHARACTER, UTF_PRIVATE_USAGE_AREA_START, UnauthorizedServerErrorResponse, WEB_PROTOCOL_PREFIX_REGEX, ZIP_CODE_STRING_REGEX, addHttpToUrl, addLatLngPoints, addModifiers, addPlusPrefixToNumber, addPrefix, addPrefixFunction, addSuffix, addSuffixFunction, addToSet, addToSetCopy, allFalsyOrEmptyKeys, allIndexesInIndexRange, allKeyValueTuples, allMaybeSoKeys, allNonUndefinedKeys, allObjectsAreEqual, allValuesAreMaybeNot, allValuesAreNotMaybe, allowValueOnceFilter, applyBestFit, applyToMultipleFields, approximateTimerEndDate, areEqualContext, areEqualPOJOValues, arrayContainsDuplicateValue, arrayContentsDiffer, arrayDecision, arrayDecisionFunction, arrayFactory, arrayInputFactory, arrayToLowercase, arrayToMap, arrayToObject, arrayToUppercase, asArray, asDecisionFunction, asGetter, asIndexRangeCheckFunctionConfig, asIterable, asNumber, asObjectCopyFactory, asPromise, asSet, assignValuesToPOJO, assignValuesToPOJOFunction, authClaims, authRoleClaimsService, authRolesSetHasRoles, baseWebsiteUrl, batch, batchCalc, bitwiseObjectDencoder, bitwiseObjectEncoder, bitwiseObjectdecoder, bitwiseSetDecoder, bitwiseSetDencoder, booleanFactory, boundNumber, boundNumberFunction, boundToRectangle, build, cachedGetter, capLatValue, capitalizeFirstLetter, caseInsensitiveFilterByIndexOfDecisionFactory, caseInsensitiveString, catchAllHandlerKey, chainMapFunction, chainMapSameFunctions, coerceToEmailParticipants, combineMaps, compareEqualityWithValueFromItemsFunction, compareEqualityWithValueFromItemsFunctionFactory, compareFnOrder, compareWithMappedValuesFunction, computeNextFractionalHour, computeNextFreeIndexFunction, concatArrays, concatArraysUnique, containsAllStringsAnyCase, containsAllValues, containsAnyStringAnyCase, containsAnyValue, containsAnyValueFromSet, containsNoValueFromSet, containsNoneOfValue, containsStringAnyCase, convertEmailParticipantStringToParticipant, convertMaybeToArray, convertParticipantToEmailParticipantString, convertToArray, copyArray, copyField, copyLatLngBound, copyLatLngPoint, copyObject, copySetAndDo, countAllInNestedArray, countPOJOKeys, countPOJOKeysFunction, cronExpressionRepeatingEveryNMinutes, cssClassesSet, cutToPrecision, cutValueToInteger, cutValueToPrecision, cutValueToPrecisionFunction, dateFromLogicalDate, dayOfWeek, daysOfWeekArray, daysOfWeekFromEnabledDays, daysOfWeekNameFunction, daysOfWeekNameMap, decisionFunction, decodeHashedValues, decodeHashedValuesWithDecodeMap, decodeModelKeyTypePair, defaultFilterFromPOJOFunctionNoCopy, defaultForwardFunctionFactory, defaultLatLngPoint, defaultLatLngString, dencodeBitwiseSet, diffLatLngBoundPoints, diffLatLngPoints, dollarAmountString, e164PhoneNumberExtensionPair, e164PhoneNumberFromE164PhoneNumberExtensionPair, enabledDaysFromDaysOfWeek, encodeBitwiseSet, encodeModelKeyTypePair, errorMessageContainsString, errorMessageContainsStringFunction, escapeStringForRegex, excludeValues, excludeValuesFromArray, excludeValuesFromSet, existsInIterable, expandArrayMapTuples, expandArrayValueTuples, expandFlattenTreeFunction, expandIndexSet, expandTreeFunction, expandTrees, extendLatLngBound, filterAndMapFunction, filterEmptyValues, filterFalsyAndEmptyValues, filterFromIterable, filterFromPOJO, filterFromPOJOFunction, filterKeyValueTupleFunction, filterKeyValueTuples, filterKeyValueTuplesFunction, filterKeyValueTuplesInputToFilter, filterMaybeValues, filterNullAndUndefinedValues, filterOnlyUndefinedValues, filterUndefinedValues, filterUniqueByIndex, filterUniqueCaseInsensitiveStrings, filterUniqueFunction, filterUniqueTransform, filterUniqueValues, filterValuesByDistance, filterValuesByDistanceNoOrder, filterValuesToSet, filterValuesUsingSet, filteredPage, findAllCharacterOccurences, findAllCharacterOccurencesFunction, findBest, findBestIndexMatch, findBestIndexMatchFunction, findBestIndexSetPair, findFirstCharacterOccurence, findInIterable, findIndexOfFirstDuplicateValue, findItemsByIndex, findNext, findPOJOKeys, findPOJOKeysFunction, findStringsRegexString, findToIndexSet, findValuesFrom, firstAndLastCharacterOccurrence, firstAndLastValue, firstValue, firstValueFromIterable, fitToIndexRangeFunction, fixExtraQueryParameters, fixMultiSlashesInSlashPath, flattenArray, flattenArrayOrValueArray, flattenArrayToSet, flattenArrayUnique, flattenArrayUniqueCaseInsensitiveStrings, flattenTree, flattenTreeToArray, flattenTreeToArrayFunction, flattenTrees, forEachInIterable, forEachKeyValue, forEachKeyValueOnPOJOFunction, forEachWithArray, forwardFunction, fractionalHoursToMinutes, generateIfDoesNotExist, getArrayNextIndex, getDayOffset, getDayTomorrow, getDayYesterday, getDaysOfWeekNames, getFunctionType, getNextDay, getNextPageNumber, getOverlappingRectangle, getPageNumber, getPreviousDay, getValueFromGetter, groupValues, handlerBindAccessor, handlerConfigurerFactory, handlerFactory, handlerMappedSetFunction, handlerMappedSetFunctionFactory, handlerSetFunction, hasDifferentStringsNoCase, hasDifferentValues, hasHttpPrefix, hasNonNullValue, hasSameTimezone, hasSameValues, hasValueFunction, hasValueOrNotEmpty, hasValueOrNotEmptyObject, hasWebsiteDomain, hashSetForIndexed, hourToFractionalHour, idBatchFactory, incrementingNumberFactory, indexDeltaGroup, indexDeltaGroupFunction, indexRange, indexRangeCheckFunction, indexRangeCheckReaderFunction, indexRangeForArray, indexRangeOverlapsIndexRange, indexRangeOverlapsIndexRangeFunction, indexRangeReaderPairFactory, indexRefMap, indexedValuesArrayAccessorFactory, insertIntoBooleanKeyArray, invertBooleanReturnFunction, invertDecision, invertFilter, isAllowed, isClassLikeType, isCompleteUnitedStatesAddress, isConsideredUtcTimezoneString, isDate, isDefaultLatLngPoint, isDefaultLatLngPointValue, isDefaultReadableError, isDefinedAndNotFalse, isDollarAmountString, isE164PhoneNumber, isE164PhoneNumberWithExtension, isEmptyIterable, isEqualContext, isEqualToValueDecisionFunction, isEvenNumber, isFalseBooleanKeyArray, isFinalPage, isGetter, isISO8601DateString, isISO8601DayString, isISO8601DayStringStart, isInAllowedDaysOfWeekSet, isInNumberBoundFunction, isInSetDecisionFunction, isIndexNumberInIndexRange, isIndexNumberInIndexRangeFunction, isIndexRangeInIndexRange, isIndexRangeInIndexRangeFunction, isIterable, isLatLngBound, isLatLngBoundWithinLatLngBound, isLatLngPoint, isLatLngPointWithinLatLngBound, isLatLngString, isLogicalDateStringCode, isMapIdentityFunction, isMaybeNot, isMaybeNotOrTrue, isMaybeSo, isModelKey, isMonthDaySlashDate, isNonClassFunction, isNotNullOrEmptyString, isNumberDivisibleBy, isObjectWithConstructor, isOddNumber, isPromise, isPromiseLike, isSameLatLngBound, isSameLatLngPoint, isSameNonNullValue, isSameVector, isSelectedDecisionFunctionFactory, isSelectedIndexDecisionFunction, isServerError, isSlashPathFile, isSlashPathFolder, isSlashPathTypedFile, isStringOrTrue, isTrueBooleanKeyArray, isUTCDateString, isUsStateCodeString, isValidLatLngPoint, isValidLatitude, isValidLongitude, isValidNumberBound, isValidPhoneExtensionNumber, isValidSlashPath, isWebsiteUrl, isWebsiteUrlWithPrefix, isWithinLatLngBoundFunction, isolateSlashPath, isolateSlashPathFunction, isolateWebsitePathFunction, itemCountForBatchIndex, iterableToArray, iterableToMap, iterablesAreSetEquivalent, iterate, iterateFilteredPages, joinHostAndPort, joinStringsWithSpaces, keepCharactersAfterFirstCharacterOccurence, keepCharactersAfterFirstCharacterOccurenceFunction, keepFromSetCopy, keepValuesFromArray, keepValuesFromSet, keyValueMapFactory, labeledValueMap, lastValue, latLngBound, latLngBoundCenterPoint, latLngBoundEastBound, latLngBoundFromInput, latLngBoundFullyWrapsMap, latLngBoundFunction, latLngBoundNorthBound, latLngBoundNorthEastPoint, latLngBoundNorthWestPoint, latLngBoundOverlapsLatLngBound, latLngBoundSouthBound, latLngBoundSouthEastPoint, latLngBoundSouthWestPoint, latLngBoundStrictlyWrapsMap, latLngBoundTuple, latLngBoundTupleFunction, latLngBoundWestBound, latLngBoundWrapsMap, latLngDataPointFunction, latLngPoint, latLngPointFromString, latLngPointFunction, latLngPointPrecisionFunction, latLngString, latLngStringFunction, latLngTuple, latLngTupleFunction, limitArray, lonLatTuple, lowercaseFirstLetter, mailToUrlString, makeBestFit, makeCopyModelFieldFunction, makeDateMonthForMonthOfYear, makeGetter, makeHandler, makeHashDecodeMap, makeKeyPairs, makeModelConversionFieldValuesFunction, makeModelMap, makeModelMapFunctions, makeMultiModelKeyMap, makeValuesGroupMap, makeWithFactory, makeWithFactoryInput, mapArrayFunction, mapFunctionOutput, mapFunctionOutputPair, mapGetter, mapGetterFactory, mapIdentityFunction, mapIterable, mapKeysIntersectionObjectToArray, mapMaybeFunction, mapObjectMap, mapObjectMapFunction, mapObjectToTargetObject, mapPromiseOrValue, mapToObject, mapToTuples, mapValuesToSet, mappedUseAsyncFunction, mappedUseFunction, mapsHaveSameKeys, maybeMergeModelModifiers, maybeMergeModifiers, maybeModifierMapToFunction, maybeSet, mergeArrayIntoArray, mergeArrayOrValueIntoArray, mergeArrays, mergeArraysIntoArray, mergeFilterFunctions, mergeIntoArray, mergeModifiers, mergeObjects, mergeObjectsFunction, mergeSlashPaths, messageFromError, minAndMaxFunction, minAndMaxIndex, minAndMaxIndexFunction, minAndMaxIndexItemsFunction, minAndMaxNumber, minutesToFractionalHours, modelFieldConversions, modelFieldMapFunction, modelFieldMapFunctions, modelTypeDataPairFactory, modifier, modifierMapToFunction, modifyModelMapFunction, modifyModelMapFunctions, monthDaySlashDateToDateString, monthOfYearFromDate, monthOfYearFromDateMonth, multiKeyValueMapFactory, multiValueMapBuilder, neMostLatLngPoint, nearestDivisibleValues, objectCopyFactory, objectDeltaArrayCompressor, objectFieldEqualityChecker, objectFlatMergeMatrix, objectHasKey, objectHasKeys, objectHasNoKeys, objectIsEmpty, objectKeyEqualityComparatorFunction, objectKeysEqualityComparatorFunction, objectMergeMatrix, objectToMap, objectToTuples, overlapsLatLngBoundFunction, overrideInObject, overrideInObjectFunctionFactory, pairGroupValues, parseISO8601DayStringToUTCDate, partialServerError, passThrough, percentNumberFromDecimal, percentNumberToDecimal, performAsyncTask, performAsyncTasks, performBatchLoop, performMakeLoop, performTaskCountLoop, performTaskLoop, performTasksFromFactoryInParallelFunction, performTasksInParallel, performTasksInParallelFunction, pickOneRandomly, poll, primativeKeyDencoder, primativeKeyDencoderMap, primativeKeyStringDencoder, primativeValuesDelta, promiseReference, protectedFactory, pushArrayItemsIntoArray, pushElementOntoArray, pushItemOrArrayItemsIntoArray, randomArrayFactory, randomArrayIndex, randomBoolean, randomEmailFactory, randomFromArrayFactory, randomLatLngFactory, randomLatLngFromCenterFactory, randomNumber, randomNumberFactory, randomPhoneNumberFactory, randomPickFactory, range, rangedIndexedValuesArrayAccessorFactory, rangedIndexedValuesArrayAccessorInfoFactory, readBooleanKeySafetyWrap, readDomainFromEmailAddress, readDomainsFromEmailAddresses, readEmailDomainFromUrlOrEmailAddress, readIndexNumber, readKeysFrom, readKeysFromFilterUniqueFunctionAdditionalKeys, readKeysFromFilterUniqueFunctionAdditionalKeysInput, readKeysFunction, readKeysSetFrom, readKeysSetFunction, readKeysToMap, readModelKey, readModelKeyFromObject, readModelKeys, readModelKeysFromObjects, readMultipleKeysToMap, readUniqueModelKey, readableError, readableStreamToBase64, readableStreamToBuffer, readableStreamToStringFunction, rectangleOverlapsRectangle, reduceBooleansFn, reduceBooleansWithAnd, reduceBooleansWithAndFn, reduceBooleansWithOr, reduceBooleansWithOrFn, reduceNumbers, reduceNumbersFn, reduceNumbersWithAdd, reduceNumbersWithAddFn, reduceNumbersWithMax, reduceNumbersWithMaxFn, reduceNumbersWithMin, reduceNumbersWithMinFn, removeByKeyFromBooleanKeyArray, removeCharactersAfterFirstCharacterOccurence, removeCharactersAfterFirstCharacterOccurenceFunction, removeExtensionFromPhoneNumber, removeFromBooleanKeyArray, removeFromSet, removeFromSetCopy, removeHttpFromUrl, removeModelsWithKey, removeModelsWithSameKey, removeModifiers, removeTrailingFileTypeSeparators, removeTrailingSlashes, removeWebProtocolPrefix, repeatString, replaceCharacterAtIndexIf, replaceCharacterAtIndexWith, replaceInvalidFilePathTypeSeparatorsInSlashPath, replaceInvalidFilePathTypeSeparatorsInSlashPathFunction, replaceLastCharacterIf, replaceLastCharacterIfIsFunction, replaceMultipleFilePathsInSlashPath, replaceStringsFunction, requireModelKey, restoreOrder, restoreOrderWithValues, reverseCompareFn, roundNumberToStepFunction, roundNumberUpToStep, roundToPrecision, roundToPrecisionFunction, roundingFunction, runAsyncTaskForValue, runAsyncTasksForValues, safeCompareEquality, safeEqualityComparatorFunction, safeFindBestIndexMatch, searchStringFilterFunction, separateValues, separateValuesToSets, serverError, setContainsAllValues, setContainsAnyValue, setContainsNoneOfValue, setDeltaChangeKeys, setDeltaFunction, setHasValueFunction, setIncludes, setIncludesFunction, setKeysOnMap, setWebProtocolPrefix, setsAreEquivalent, simpleSortValuesFunctionWithSortRef, slashPathFactory, slashPathInvalidError, slashPathName, slashPathParts, slashPathStartTypeFactory, slashPathType, slashPathValidationFactory, sliceIndexRangeFunction, sortAscendingIndexNumberRefFunction, sortByIndexAscendingCompareFunction, sortByIndexRangeAscendingCompareFunction, sortByLabelFunction, sortByNumberFunction, sortByStringFunction, sortCompareNumberFunction, sortNumbersAscendingFunction, sortValues, sortValuesFunctionOrMapIdentityWithSortRef, sortValuesFunctionWithSortRef, spaceSeparatedCssClasses, splitCommaSeparatedString, splitCommaSeparatedStringToSet, splitJoinNameString, splitJoinRemainder, splitStringAtFirstCharacterOccurence, splitStringAtFirstCharacterOccurenceFunction, splitStringAtIndex, startOfDayForSystemDateInUTC, startOfDayForUTCDateInUTC, stepsFromIndex, stepsFromIndexFunction, stringFactoryFromFactory, stringToLowercaseFunction, stringToUppercaseFunction, stringTrimFunction, sumOfIntegersBetween, swMostLatLngPoint, symmetricDifferenceArray, symmetricDifferenceArrayBetweenSets, symmetricDifferenceWithModels, takeFront, takeLast, takeValuesFromIterable, telUrlString, telUrlStringForE164PhoneNumberPair, terminatingFactoryFromArray, throwKeyIsRequired, timePeriodCounter, timer, toAbsoluteSlashPathStartType, toCaseInsensitiveStringArray, toModelFieldConversions, toModelMapFunctions, toReadableError, toRelativeSlashPathStartType, toggleInSet, toggleInSetCopy, toggleTimerRunning, transformNumberFunction, transformNumberFunctionConfig, transformStringFunction, transformStringFunctionConfig, transformStrings, trimArray, typedServiceRegistry, unique, uniqueCaseInsensitiveStrings, uniqueCaseInsensitiveStringsSet, uniqueKeys, uniqueModels, unitedStatesAddressString, urlWithoutParameters, useAsync, useCallback, useContextFunction, useIterableOrValue, useModelOrKey, usePromise, useValue, validLatLngPoint, validLatLngPointFunction, valueAtIndex, valuesAreBothNullishOrEquivalent, valuesFromPOJO, valuesFromPOJOFunction, vectorMinimumSizeResizeFunction, vectorsAreEqual, waitForMs, websiteDomainAndPathPair, websiteDomainAndPathPairFromWebsiteUrl, websitePathAndQueryPair, websitePathFromWebsiteDomainAndPath, websitePathFromWebsiteUrl, websiteUrlFromPaths, wrapIndexRangeFunction, wrapLatLngPoint, wrapLngValue, wrapMapFunctionOutput, wrapNumberFunction, wrapTuples, wrapUseAsyncFunction, wrapUseFunction };
|