@dereekb/util 13.36.0 → 13.37.0
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/eslint/package.json +2 -2
- package/fetch/package.json +2 -2
- package/index.cjs.js +508 -277
- package/index.esm.js +504 -278
- package/oidc/package.json +2 -2
- package/package.json +1 -1
- package/src/lib/object/index.d.ts +1 -0
- package/src/lib/object/object.copy.d.ts +139 -0
- package/src/lib/object/object.d.ts +17 -0
- package/test/package.json +2 -2
package/index.esm.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { symmetricDifference } from 'extra-set';
|
|
2
2
|
import { BaseError } from 'make-error';
|
|
3
3
|
|
|
4
|
-
function _array_like_to_array$
|
|
4
|
+
function _array_like_to_array$D(arr, len) {
|
|
5
5
|
if (len == null || len > arr.length) len = arr.length;
|
|
6
6
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
7
7
|
return arr2;
|
|
8
8
|
}
|
|
9
9
|
function _array_without_holes$n(arr) {
|
|
10
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
10
|
+
if (Array.isArray(arr)) return _array_like_to_array$D(arr);
|
|
11
11
|
}
|
|
12
12
|
function _iterable_to_array$n(iter) {
|
|
13
13
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
@@ -16,19 +16,19 @@ function _non_iterable_spread$n() {
|
|
|
16
16
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
17
17
|
}
|
|
18
18
|
function _to_consumable_array$n(arr) {
|
|
19
|
-
return _array_without_holes$n(arr) || _iterable_to_array$n(arr) || _unsupported_iterable_to_array$
|
|
19
|
+
return _array_without_holes$n(arr) || _iterable_to_array$n(arr) || _unsupported_iterable_to_array$D(arr) || _non_iterable_spread$n();
|
|
20
20
|
}
|
|
21
|
-
function _type_of$
|
|
21
|
+
function _type_of$o(obj) {
|
|
22
22
|
"@swc/helpers - typeof";
|
|
23
23
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
24
24
|
}
|
|
25
|
-
function _unsupported_iterable_to_array$
|
|
25
|
+
function _unsupported_iterable_to_array$D(o, minLen) {
|
|
26
26
|
if (!o) return;
|
|
27
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
27
|
+
if (typeof o === "string") return _array_like_to_array$D(o, minLen);
|
|
28
28
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
29
29
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
30
30
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
31
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
31
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$D(o, minLen);
|
|
32
32
|
}
|
|
33
33
|
// MARK: Functions
|
|
34
34
|
/**
|
|
@@ -124,7 +124,7 @@ function _unsupported_iterable_to_array$C(o, minLen) {
|
|
|
124
124
|
var result;
|
|
125
125
|
if (typeof values === 'string') {
|
|
126
126
|
result = treatStringAsIterable;
|
|
127
|
-
} else if (values != null && (typeof values === "undefined" ? "undefined" : _type_of$
|
|
127
|
+
} else if (values != null && (typeof values === "undefined" ? "undefined" : _type_of$o(values)) === 'object' && Symbol.iterator in values) {
|
|
128
128
|
result = true;
|
|
129
129
|
} else {
|
|
130
130
|
result = false;
|
|
@@ -411,13 +411,13 @@ function _unsupported_iterable_to_array$C(o, minLen) {
|
|
|
411
411
|
return result;
|
|
412
412
|
}
|
|
413
413
|
|
|
414
|
-
function _array_like_to_array$
|
|
414
|
+
function _array_like_to_array$C(arr, len) {
|
|
415
415
|
if (len == null || len > arr.length) len = arr.length;
|
|
416
416
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
417
417
|
return arr2;
|
|
418
418
|
}
|
|
419
419
|
function _array_without_holes$m(arr) {
|
|
420
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
420
|
+
if (Array.isArray(arr)) return _array_like_to_array$C(arr);
|
|
421
421
|
}
|
|
422
422
|
function _iterable_to_array$m(iter) {
|
|
423
423
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
@@ -426,15 +426,15 @@ function _non_iterable_spread$m() {
|
|
|
426
426
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
427
427
|
}
|
|
428
428
|
function _to_consumable_array$m(arr) {
|
|
429
|
-
return _array_without_holes$m(arr) || _iterable_to_array$m(arr) || _unsupported_iterable_to_array$
|
|
429
|
+
return _array_without_holes$m(arr) || _iterable_to_array$m(arr) || _unsupported_iterable_to_array$C(arr) || _non_iterable_spread$m();
|
|
430
430
|
}
|
|
431
|
-
function _unsupported_iterable_to_array$
|
|
431
|
+
function _unsupported_iterable_to_array$C(o, minLen) {
|
|
432
432
|
if (!o) return;
|
|
433
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
433
|
+
if (typeof o === "string") return _array_like_to_array$C(o, minLen);
|
|
434
434
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
435
435
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
436
436
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
437
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
437
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$C(o, minLen);
|
|
438
438
|
}
|
|
439
439
|
// MARK: Functions
|
|
440
440
|
/**
|
|
@@ -885,13 +885,13 @@ function _unsupported_iterable_to_array$B(o, minLen) {
|
|
|
885
885
|
return readKeysSetFunction(readKey)(values);
|
|
886
886
|
}
|
|
887
887
|
|
|
888
|
-
function _array_like_to_array$
|
|
888
|
+
function _array_like_to_array$B(arr, len) {
|
|
889
889
|
if (len == null || len > arr.length) len = arr.length;
|
|
890
890
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
891
891
|
return arr2;
|
|
892
892
|
}
|
|
893
893
|
function _array_without_holes$l(arr) {
|
|
894
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
894
|
+
if (Array.isArray(arr)) return _array_like_to_array$B(arr);
|
|
895
895
|
}
|
|
896
896
|
function _iterable_to_array$l(iter) {
|
|
897
897
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
@@ -900,15 +900,15 @@ function _non_iterable_spread$l() {
|
|
|
900
900
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
901
901
|
}
|
|
902
902
|
function _to_consumable_array$l(arr) {
|
|
903
|
-
return _array_without_holes$l(arr) || _iterable_to_array$l(arr) || _unsupported_iterable_to_array$
|
|
903
|
+
return _array_without_holes$l(arr) || _iterable_to_array$l(arr) || _unsupported_iterable_to_array$B(arr) || _non_iterable_spread$l();
|
|
904
904
|
}
|
|
905
|
-
function _unsupported_iterable_to_array$
|
|
905
|
+
function _unsupported_iterable_to_array$B(o, minLen) {
|
|
906
906
|
if (!o) return;
|
|
907
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
907
|
+
if (typeof o === "string") return _array_like_to_array$B(o, minLen);
|
|
908
908
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
909
909
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
910
910
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
911
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
911
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$B(o, minLen);
|
|
912
912
|
}
|
|
913
913
|
/**
|
|
914
914
|
* Converts an {@link IterableOrValue} into a Set. Strings are treated as single values rather than character iterables.
|
|
@@ -1442,13 +1442,13 @@ function _unsupported_iterable_to_array$A(o, minLen) {
|
|
|
1442
1442
|
return a && b ? a.size === b.size && setContainsAllValues(a, b, true) : a == b;
|
|
1443
1443
|
}
|
|
1444
1444
|
|
|
1445
|
-
function _array_like_to_array$
|
|
1445
|
+
function _array_like_to_array$A(arr, len) {
|
|
1446
1446
|
if (len == null || len > arr.length) len = arr.length;
|
|
1447
1447
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
1448
1448
|
return arr2;
|
|
1449
1449
|
}
|
|
1450
1450
|
function _array_without_holes$k(arr) {
|
|
1451
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
1451
|
+
if (Array.isArray(arr)) return _array_like_to_array$A(arr);
|
|
1452
1452
|
}
|
|
1453
1453
|
function _iterable_to_array$k(iter) {
|
|
1454
1454
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
@@ -1457,15 +1457,15 @@ function _non_iterable_spread$k() {
|
|
|
1457
1457
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
1458
1458
|
}
|
|
1459
1459
|
function _to_consumable_array$k(arr) {
|
|
1460
|
-
return _array_without_holes$k(arr) || _iterable_to_array$k(arr) || _unsupported_iterable_to_array$
|
|
1460
|
+
return _array_without_holes$k(arr) || _iterable_to_array$k(arr) || _unsupported_iterable_to_array$A(arr) || _non_iterable_spread$k();
|
|
1461
1461
|
}
|
|
1462
|
-
function _unsupported_iterable_to_array$
|
|
1462
|
+
function _unsupported_iterable_to_array$A(o, minLen) {
|
|
1463
1463
|
if (!o) return;
|
|
1464
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
1464
|
+
if (typeof o === "string") return _array_like_to_array$A(o, minLen);
|
|
1465
1465
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
1466
1466
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
1467
1467
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
1468
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
1468
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$A(o, minLen);
|
|
1469
1469
|
}
|
|
1470
1470
|
/**
|
|
1471
1471
|
* Inverts the output of an arbitrary boolean-returning function.
|
|
@@ -1564,6 +1564,10 @@ function _object_spread$g(target) {
|
|
|
1564
1564
|
}
|
|
1565
1565
|
return target;
|
|
1566
1566
|
}
|
|
1567
|
+
function _type_of$n(obj) {
|
|
1568
|
+
"@swc/helpers - typeof";
|
|
1569
|
+
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
1570
|
+
}
|
|
1567
1571
|
/**
|
|
1568
1572
|
* Checks whether the object has no own enumerable keys.
|
|
1569
1573
|
*
|
|
@@ -1614,6 +1618,29 @@ function objectHasKeys(obj, keys, mode) {
|
|
|
1614
1618
|
});
|
|
1615
1619
|
return object;
|
|
1616
1620
|
}
|
|
1621
|
+
/**
|
|
1622
|
+
* Checks whether the value is a "plain" object, meaning an object literal or an object created with a
|
|
1623
|
+
* null prototype.
|
|
1624
|
+
*
|
|
1625
|
+
* Arrays, `Date`, `RegExp`, `Map`, `Set`, and class instances are NOT plain objects. This is the check
|
|
1626
|
+
* to use before recursing into a value's keys: a class instance's keys are an implementation detail and
|
|
1627
|
+
* copying them key-by-key produces a lifeless imitation of the original (a `Date` becomes `{}`).
|
|
1628
|
+
*
|
|
1629
|
+
* @param value - The value to check.
|
|
1630
|
+
* @returns `true` if the value is an object literal or has a null prototype.
|
|
1631
|
+
*
|
|
1632
|
+
* @dbxUtil
|
|
1633
|
+
* @dbxUtilCategory object
|
|
1634
|
+
* @dbxUtilTags object, pojo, plain, literal, type-guard, check
|
|
1635
|
+
* @dbxUtilRelated object-has-no-keys, copy-value-deep
|
|
1636
|
+
*/ function isPlainObject(value) {
|
|
1637
|
+
var result = false;
|
|
1638
|
+
if (value != null && (typeof value === "undefined" ? "undefined" : _type_of$n(value)) === 'object') {
|
|
1639
|
+
var proto = Object.getPrototypeOf(value);
|
|
1640
|
+
result = proto === Object.prototype || proto === null;
|
|
1641
|
+
}
|
|
1642
|
+
return result;
|
|
1643
|
+
}
|
|
1617
1644
|
/**
|
|
1618
1645
|
* Creates a shallow copy of an object using the spread operator.
|
|
1619
1646
|
*
|
|
@@ -2109,13 +2136,13 @@ function chainMapFunction(a, b) {
|
|
|
2109
2136
|
} : a;
|
|
2110
2137
|
}
|
|
2111
2138
|
|
|
2112
|
-
function _array_like_to_array$
|
|
2139
|
+
function _array_like_to_array$z(arr, len) {
|
|
2113
2140
|
if (len == null || len > arr.length) len = arr.length;
|
|
2114
2141
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
2115
2142
|
return arr2;
|
|
2116
2143
|
}
|
|
2117
2144
|
function _array_without_holes$j(arr) {
|
|
2118
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
2145
|
+
if (Array.isArray(arr)) return _array_like_to_array$z(arr);
|
|
2119
2146
|
}
|
|
2120
2147
|
function _iterable_to_array$j(iter) {
|
|
2121
2148
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
@@ -2124,15 +2151,15 @@ function _non_iterable_spread$j() {
|
|
|
2124
2151
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
2125
2152
|
}
|
|
2126
2153
|
function _to_consumable_array$j(arr) {
|
|
2127
|
-
return _array_without_holes$j(arr) || _iterable_to_array$j(arr) || _unsupported_iterable_to_array$
|
|
2154
|
+
return _array_without_holes$j(arr) || _iterable_to_array$j(arr) || _unsupported_iterable_to_array$z(arr) || _non_iterable_spread$j();
|
|
2128
2155
|
}
|
|
2129
|
-
function _unsupported_iterable_to_array$
|
|
2156
|
+
function _unsupported_iterable_to_array$z(o, minLen) {
|
|
2130
2157
|
if (!o) return;
|
|
2131
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
2158
|
+
if (typeof o === "string") return _array_like_to_array$z(o, minLen);
|
|
2132
2159
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
2133
2160
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
2134
2161
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
2135
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
2162
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$z(o, minLen);
|
|
2136
2163
|
}
|
|
2137
2164
|
/**
|
|
2138
2165
|
* Concatenates multiple arrays and returns only unique values.
|
|
@@ -2591,13 +2618,13 @@ function readModelKey(input) {
|
|
|
2591
2618
|
}
|
|
2592
2619
|
;
|
|
2593
2620
|
|
|
2594
|
-
function _array_like_to_array$
|
|
2621
|
+
function _array_like_to_array$y(arr, len) {
|
|
2595
2622
|
if (len == null || len > arr.length) len = arr.length;
|
|
2596
2623
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
2597
2624
|
return arr2;
|
|
2598
2625
|
}
|
|
2599
2626
|
function _array_without_holes$i(arr) {
|
|
2600
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
2627
|
+
if (Array.isArray(arr)) return _array_like_to_array$y(arr);
|
|
2601
2628
|
}
|
|
2602
2629
|
function _iterable_to_array$i(iter) {
|
|
2603
2630
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
@@ -2606,15 +2633,15 @@ function _non_iterable_spread$i() {
|
|
|
2606
2633
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
2607
2634
|
}
|
|
2608
2635
|
function _to_consumable_array$i(arr) {
|
|
2609
|
-
return _array_without_holes$i(arr) || _iterable_to_array$i(arr) || _unsupported_iterable_to_array$
|
|
2636
|
+
return _array_without_holes$i(arr) || _iterable_to_array$i(arr) || _unsupported_iterable_to_array$y(arr) || _non_iterable_spread$i();
|
|
2610
2637
|
}
|
|
2611
|
-
function _unsupported_iterable_to_array$
|
|
2638
|
+
function _unsupported_iterable_to_array$y(o, minLen) {
|
|
2612
2639
|
if (!o) return;
|
|
2613
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
2640
|
+
if (typeof o === "string") return _array_like_to_array$y(o, minLen);
|
|
2614
2641
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
2615
2642
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
2616
2643
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
2617
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
2644
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$y(o, minLen);
|
|
2618
2645
|
}
|
|
2619
2646
|
/**
|
|
2620
2647
|
* Wraps a key reading function to ensure that empty string keys are not used in boolean key arrays.
|
|
@@ -2721,13 +2748,13 @@ function _unsupported_iterable_to_array$x(o, minLen) {
|
|
|
2721
2748
|
return x || undefined;
|
|
2722
2749
|
});
|
|
2723
2750
|
|
|
2724
|
-
function _array_like_to_array$
|
|
2751
|
+
function _array_like_to_array$x(arr, len) {
|
|
2725
2752
|
if (len == null || len > arr.length) len = arr.length;
|
|
2726
2753
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
2727
2754
|
return arr2;
|
|
2728
2755
|
}
|
|
2729
2756
|
function _array_without_holes$h(arr) {
|
|
2730
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
2757
|
+
if (Array.isArray(arr)) return _array_like_to_array$x(arr);
|
|
2731
2758
|
}
|
|
2732
2759
|
function _class_call_check$b(instance, Constructor) {
|
|
2733
2760
|
if (!(instance instanceof Constructor)) {
|
|
@@ -2767,15 +2794,15 @@ function _non_iterable_spread$h() {
|
|
|
2767
2794
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
2768
2795
|
}
|
|
2769
2796
|
function _to_consumable_array$h(arr) {
|
|
2770
|
-
return _array_without_holes$h(arr) || _iterable_to_array$h(arr) || _unsupported_iterable_to_array$
|
|
2797
|
+
return _array_without_holes$h(arr) || _iterable_to_array$h(arr) || _unsupported_iterable_to_array$x(arr) || _non_iterable_spread$h();
|
|
2771
2798
|
}
|
|
2772
|
-
function _unsupported_iterable_to_array$
|
|
2799
|
+
function _unsupported_iterable_to_array$x(o, minLen) {
|
|
2773
2800
|
if (!o) return;
|
|
2774
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
2801
|
+
if (typeof o === "string") return _array_like_to_array$x(o, minLen);
|
|
2775
2802
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
2776
2803
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
2777
2804
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
2778
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
2805
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$x(o, minLen);
|
|
2779
2806
|
}
|
|
2780
2807
|
/**
|
|
2781
2808
|
* Set that is implemented internally using a Map, and input values have their keys read.
|
|
@@ -2971,13 +2998,13 @@ function _unsupported_iterable_to_array$w(o, minLen) {
|
|
|
2971
2998
|
}
|
|
2972
2999
|
();
|
|
2973
3000
|
|
|
2974
|
-
function _array_like_to_array$
|
|
3001
|
+
function _array_like_to_array$w(arr, len) {
|
|
2975
3002
|
if (len == null || len > arr.length) len = arr.length;
|
|
2976
3003
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
2977
3004
|
return arr2;
|
|
2978
3005
|
}
|
|
2979
3006
|
function _array_without_holes$g(arr) {
|
|
2980
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
3007
|
+
if (Array.isArray(arr)) return _array_like_to_array$w(arr);
|
|
2981
3008
|
}
|
|
2982
3009
|
function _iterable_to_array$g(iter) {
|
|
2983
3010
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
@@ -2986,15 +3013,15 @@ function _non_iterable_spread$g() {
|
|
|
2986
3013
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
2987
3014
|
}
|
|
2988
3015
|
function _to_consumable_array$g(arr) {
|
|
2989
|
-
return _array_without_holes$g(arr) || _iterable_to_array$g(arr) || _unsupported_iterable_to_array$
|
|
3016
|
+
return _array_without_holes$g(arr) || _iterable_to_array$g(arr) || _unsupported_iterable_to_array$w(arr) || _non_iterable_spread$g();
|
|
2990
3017
|
}
|
|
2991
|
-
function _unsupported_iterable_to_array$
|
|
3018
|
+
function _unsupported_iterable_to_array$w(o, minLen) {
|
|
2992
3019
|
if (!o) return;
|
|
2993
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
3020
|
+
if (typeof o === "string") return _array_like_to_array$w(o, minLen);
|
|
2994
3021
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
2995
3022
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
2996
3023
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
2997
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
3024
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$w(o, minLen);
|
|
2998
3025
|
}
|
|
2999
3026
|
var SORT_VALUE_LESS_THAN = -1;
|
|
3000
3027
|
var SORT_VALUE_GREATER_THAN = 1;
|
|
@@ -3148,21 +3175,21 @@ function reverseCompareFn(compareFn) {
|
|
|
3148
3175
|
};
|
|
3149
3176
|
}
|
|
3150
3177
|
|
|
3151
|
-
function _array_like_to_array$
|
|
3178
|
+
function _array_like_to_array$v(arr, len) {
|
|
3152
3179
|
if (len == null || len > arr.length) len = arr.length;
|
|
3153
3180
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
3154
3181
|
return arr2;
|
|
3155
3182
|
}
|
|
3156
|
-
function _array_with_holes$
|
|
3183
|
+
function _array_with_holes$n(arr) {
|
|
3157
3184
|
if (Array.isArray(arr)) return arr;
|
|
3158
3185
|
}
|
|
3159
3186
|
function _array_without_holes$f(arr) {
|
|
3160
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
3187
|
+
if (Array.isArray(arr)) return _array_like_to_array$v(arr);
|
|
3161
3188
|
}
|
|
3162
3189
|
function _iterable_to_array$f(iter) {
|
|
3163
3190
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
3164
3191
|
}
|
|
3165
|
-
function _iterable_to_array_limit$
|
|
3192
|
+
function _iterable_to_array_limit$n(arr, i) {
|
|
3166
3193
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
3167
3194
|
if (_i == null) return;
|
|
3168
3195
|
var _arr = [];
|
|
@@ -3186,25 +3213,25 @@ function _iterable_to_array_limit$m(arr, i) {
|
|
|
3186
3213
|
}
|
|
3187
3214
|
return _arr;
|
|
3188
3215
|
}
|
|
3189
|
-
function _non_iterable_rest$
|
|
3216
|
+
function _non_iterable_rest$n() {
|
|
3190
3217
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
3191
3218
|
}
|
|
3192
3219
|
function _non_iterable_spread$f() {
|
|
3193
3220
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
3194
3221
|
}
|
|
3195
|
-
function _sliced_to_array$
|
|
3196
|
-
return _array_with_holes$
|
|
3222
|
+
function _sliced_to_array$n(arr, i) {
|
|
3223
|
+
return _array_with_holes$n(arr) || _iterable_to_array_limit$n(arr, i) || _unsupported_iterable_to_array$v(arr, i) || _non_iterable_rest$n();
|
|
3197
3224
|
}
|
|
3198
3225
|
function _to_consumable_array$f(arr) {
|
|
3199
|
-
return _array_without_holes$f(arr) || _iterable_to_array$f(arr) || _unsupported_iterable_to_array$
|
|
3226
|
+
return _array_without_holes$f(arr) || _iterable_to_array$f(arr) || _unsupported_iterable_to_array$v(arr) || _non_iterable_spread$f();
|
|
3200
3227
|
}
|
|
3201
|
-
function _unsupported_iterable_to_array$
|
|
3228
|
+
function _unsupported_iterable_to_array$v(o, minLen) {
|
|
3202
3229
|
if (!o) return;
|
|
3203
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
3230
|
+
if (typeof o === "string") return _array_like_to_array$v(o, minLen);
|
|
3204
3231
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
3205
3232
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
3206
3233
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
3207
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
3234
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$v(o, minLen);
|
|
3208
3235
|
}
|
|
3209
3236
|
/**
|
|
3210
3237
|
* Splits the input array into batches of a maximum size. Each batch carries its zero-based index as `.i`.
|
|
@@ -3364,7 +3391,7 @@ function _unsupported_iterable_to_array$u(o, minLen) {
|
|
|
3364
3391
|
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
3365
3392
|
try {
|
|
3366
3393
|
for(var _iterator = pairs.pairs[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
3367
|
-
var _step_value = _sliced_to_array$
|
|
3394
|
+
var _step_value = _sliced_to_array$n(_step.value, 2), aa = _step_value[0], bb = _step_value[1];
|
|
3368
3395
|
// If any item is not the same, break.
|
|
3369
3396
|
if (!isEqual(aa, bb)) {
|
|
3370
3397
|
areDifferent = true;
|
|
@@ -3478,15 +3505,15 @@ function makeValuesGroupMap(values, groupKeyFn) {
|
|
|
3478
3505
|
return map;
|
|
3479
3506
|
}
|
|
3480
3507
|
|
|
3481
|
-
function _array_like_to_array$
|
|
3508
|
+
function _array_like_to_array$u(arr, len) {
|
|
3482
3509
|
if (len == null || len > arr.length) len = arr.length;
|
|
3483
3510
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
3484
3511
|
return arr2;
|
|
3485
3512
|
}
|
|
3486
|
-
function _array_with_holes$
|
|
3513
|
+
function _array_with_holes$m(arr) {
|
|
3487
3514
|
if (Array.isArray(arr)) return arr;
|
|
3488
3515
|
}
|
|
3489
|
-
function _iterable_to_array_limit$
|
|
3516
|
+
function _iterable_to_array_limit$m(arr, i) {
|
|
3490
3517
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
3491
3518
|
if (_i == null) return;
|
|
3492
3519
|
var _arr = [];
|
|
@@ -3510,19 +3537,19 @@ function _iterable_to_array_limit$l(arr, i) {
|
|
|
3510
3537
|
}
|
|
3511
3538
|
return _arr;
|
|
3512
3539
|
}
|
|
3513
|
-
function _non_iterable_rest$
|
|
3540
|
+
function _non_iterable_rest$m() {
|
|
3514
3541
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
3515
3542
|
}
|
|
3516
|
-
function _sliced_to_array$
|
|
3517
|
-
return _array_with_holes$
|
|
3543
|
+
function _sliced_to_array$m(arr, i) {
|
|
3544
|
+
return _array_with_holes$m(arr) || _iterable_to_array_limit$m(arr, i) || _unsupported_iterable_to_array$u(arr, i) || _non_iterable_rest$m();
|
|
3518
3545
|
}
|
|
3519
|
-
function _unsupported_iterable_to_array$
|
|
3546
|
+
function _unsupported_iterable_to_array$u(o, minLen) {
|
|
3520
3547
|
if (!o) return;
|
|
3521
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
3548
|
+
if (typeof o === "string") return _array_like_to_array$u(o, minLen);
|
|
3522
3549
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
3523
3550
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
3524
3551
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
3525
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
3552
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$u(o, minLen);
|
|
3526
3553
|
}
|
|
3527
3554
|
/**
|
|
3528
3555
|
* Combines multiple Maps into a single Map. Later maps override earlier values for the same key.
|
|
@@ -3578,7 +3605,7 @@ function _unsupported_iterable_to_array$t(o, minLen) {
|
|
|
3578
3605
|
*/ function expandArrayValueTuples(values) {
|
|
3579
3606
|
var tuples = [];
|
|
3580
3607
|
values.forEach(function(param) {
|
|
3581
|
-
var _param = _sliced_to_array$
|
|
3608
|
+
var _param = _sliced_to_array$m(param, 2), key = _param[0], _$values = _param[1];
|
|
3582
3609
|
useIterableOrValue(_$values, function(value) {
|
|
3583
3610
|
tuples.push([
|
|
3584
3611
|
key,
|
|
@@ -7554,15 +7581,15 @@ function _object_spread$f(target) {
|
|
|
7554
7581
|
* @returns The inverted filter function, or the original if invert is false
|
|
7555
7582
|
*/ var invertFilter = invertBooleanReturnFunction;
|
|
7556
7583
|
|
|
7557
|
-
function _array_like_to_array$
|
|
7584
|
+
function _array_like_to_array$t(arr, len) {
|
|
7558
7585
|
if (len == null || len > arr.length) len = arr.length;
|
|
7559
7586
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
7560
7587
|
return arr2;
|
|
7561
7588
|
}
|
|
7562
|
-
function _array_with_holes$
|
|
7589
|
+
function _array_with_holes$l(arr) {
|
|
7563
7590
|
if (Array.isArray(arr)) return arr;
|
|
7564
7591
|
}
|
|
7565
|
-
function _iterable_to_array_limit$
|
|
7592
|
+
function _iterable_to_array_limit$l(arr, i) {
|
|
7566
7593
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
7567
7594
|
if (_i == null) return;
|
|
7568
7595
|
var _arr = [];
|
|
@@ -7586,23 +7613,23 @@ function _iterable_to_array_limit$k(arr, i) {
|
|
|
7586
7613
|
}
|
|
7587
7614
|
return _arr;
|
|
7588
7615
|
}
|
|
7589
|
-
function _non_iterable_rest$
|
|
7616
|
+
function _non_iterable_rest$l() {
|
|
7590
7617
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
7591
7618
|
}
|
|
7592
|
-
function _sliced_to_array$
|
|
7593
|
-
return _array_with_holes$
|
|
7619
|
+
function _sliced_to_array$l(arr, i) {
|
|
7620
|
+
return _array_with_holes$l(arr) || _iterable_to_array_limit$l(arr, i) || _unsupported_iterable_to_array$t(arr, i) || _non_iterable_rest$l();
|
|
7594
7621
|
}
|
|
7595
7622
|
function _type_of$g(obj) {
|
|
7596
7623
|
"@swc/helpers - typeof";
|
|
7597
7624
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
7598
7625
|
}
|
|
7599
|
-
function _unsupported_iterable_to_array$
|
|
7626
|
+
function _unsupported_iterable_to_array$t(o, minLen) {
|
|
7600
7627
|
if (!o) return;
|
|
7601
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
7628
|
+
if (typeof o === "string") return _array_like_to_array$t(o, minLen);
|
|
7602
7629
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
7603
7630
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
7604
7631
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
7605
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
7632
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$t(o, minLen);
|
|
7606
7633
|
}
|
|
7607
7634
|
/**
|
|
7608
7635
|
* Iterates over filtered key/value tuples of an object and invokes a callback for each.
|
|
@@ -7764,43 +7791,43 @@ function _unsupported_iterable_to_array$s(o, minLen) {
|
|
|
7764
7791
|
switch(type){
|
|
7765
7792
|
case KeyValueTypleValueFilter.UNDEFINED:
|
|
7766
7793
|
filterFn = function filterFn(param) {
|
|
7767
|
-
var _param = _sliced_to_array$
|
|
7794
|
+
var _param = _sliced_to_array$l(param, 2), x = _param[1];
|
|
7768
7795
|
return x !== undefined;
|
|
7769
7796
|
};
|
|
7770
7797
|
break;
|
|
7771
7798
|
case KeyValueTypleValueFilter.NULL:
|
|
7772
7799
|
filterFn = function filterFn(param) {
|
|
7773
|
-
var _param = _sliced_to_array$
|
|
7800
|
+
var _param = _sliced_to_array$l(param, 2), x = _param[1];
|
|
7774
7801
|
return x != null;
|
|
7775
7802
|
};
|
|
7776
7803
|
break;
|
|
7777
7804
|
case KeyValueTypleValueFilter.FALSY:
|
|
7778
7805
|
filterFn = function filterFn(param) {
|
|
7779
|
-
var _param = _sliced_to_array$
|
|
7806
|
+
var _param = _sliced_to_array$l(param, 2), x = _param[1];
|
|
7780
7807
|
return Boolean(x);
|
|
7781
7808
|
};
|
|
7782
7809
|
break;
|
|
7783
7810
|
case KeyValueTypleValueFilter.EMPTY:
|
|
7784
7811
|
filterFn = function filterFn(param) {
|
|
7785
|
-
var _param = _sliced_to_array$
|
|
7812
|
+
var _param = _sliced_to_array$l(param, 2), x = _param[1];
|
|
7786
7813
|
return hasValueOrNotEmpty(x);
|
|
7787
7814
|
};
|
|
7788
7815
|
break;
|
|
7789
7816
|
case KeyValueTypleValueFilter.EMPTY_STRICT:
|
|
7790
7817
|
filterFn = function filterFn(param) {
|
|
7791
|
-
var _param = _sliced_to_array$
|
|
7818
|
+
var _param = _sliced_to_array$l(param, 2), x = _param[1];
|
|
7792
7819
|
return hasValueOrNotEmptyObject(x);
|
|
7793
7820
|
};
|
|
7794
7821
|
break;
|
|
7795
7822
|
case KeyValueTypleValueFilter.FALSY_AND_EMPTY:
|
|
7796
7823
|
filterFn = function filterFn(param) {
|
|
7797
|
-
var _param = _sliced_to_array$
|
|
7824
|
+
var _param = _sliced_to_array$l(param, 2), x = _param[1];
|
|
7798
7825
|
return Boolean(x) && hasValueOrNotEmpty(x);
|
|
7799
7826
|
};
|
|
7800
7827
|
break;
|
|
7801
7828
|
case KeyValueTypleValueFilter.FALSY_AND_EMPTY_STRICT:
|
|
7802
7829
|
filterFn = function filterFn(param) {
|
|
7803
|
-
var _param = _sliced_to_array$
|
|
7830
|
+
var _param = _sliced_to_array$l(param, 2), x = _param[1];
|
|
7804
7831
|
return Boolean(x) && hasValueOrNotEmptyObject(x);
|
|
7805
7832
|
};
|
|
7806
7833
|
break;
|
|
@@ -7877,12 +7904,12 @@ function cachedGetter(factory) {
|
|
|
7877
7904
|
return result;
|
|
7878
7905
|
}
|
|
7879
7906
|
|
|
7880
|
-
function _array_like_to_array$
|
|
7907
|
+
function _array_like_to_array$s(arr, len) {
|
|
7881
7908
|
if (len == null || len > arr.length) len = arr.length;
|
|
7882
7909
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
7883
7910
|
return arr2;
|
|
7884
7911
|
}
|
|
7885
|
-
function _array_with_holes$
|
|
7912
|
+
function _array_with_holes$k(arr) {
|
|
7886
7913
|
if (Array.isArray(arr)) return arr;
|
|
7887
7914
|
}
|
|
7888
7915
|
function _instanceof$3(left, right) {
|
|
@@ -7893,7 +7920,7 @@ function _instanceof$3(left, right) {
|
|
|
7893
7920
|
return left instanceof right;
|
|
7894
7921
|
}
|
|
7895
7922
|
}
|
|
7896
|
-
function _iterable_to_array_limit$
|
|
7923
|
+
function _iterable_to_array_limit$k(arr, i) {
|
|
7897
7924
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
7898
7925
|
if (_i == null) return;
|
|
7899
7926
|
var _arr = [];
|
|
@@ -7917,23 +7944,23 @@ function _iterable_to_array_limit$j(arr, i) {
|
|
|
7917
7944
|
}
|
|
7918
7945
|
return _arr;
|
|
7919
7946
|
}
|
|
7920
|
-
function _non_iterable_rest$
|
|
7947
|
+
function _non_iterable_rest$k() {
|
|
7921
7948
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
7922
7949
|
}
|
|
7923
|
-
function _sliced_to_array$
|
|
7924
|
-
return _array_with_holes$
|
|
7950
|
+
function _sliced_to_array$k(arr, i) {
|
|
7951
|
+
return _array_with_holes$k(arr) || _iterable_to_array_limit$k(arr, i) || _unsupported_iterable_to_array$s(arr, i) || _non_iterable_rest$k();
|
|
7925
7952
|
}
|
|
7926
7953
|
function _type_of$f(obj) {
|
|
7927
7954
|
"@swc/helpers - typeof";
|
|
7928
7955
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
7929
7956
|
}
|
|
7930
|
-
function _unsupported_iterable_to_array$
|
|
7957
|
+
function _unsupported_iterable_to_array$s(o, minLen) {
|
|
7931
7958
|
if (!o) return;
|
|
7932
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
7959
|
+
if (typeof o === "string") return _array_like_to_array$s(o, minLen);
|
|
7933
7960
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
7934
7961
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
7935
7962
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
7936
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
7963
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$s(o, minLen);
|
|
7937
7964
|
}
|
|
7938
7965
|
/**
|
|
7939
7966
|
* Regular expression for validating ISO8601 date strings.
|
|
@@ -8072,7 +8099,7 @@ function isConsideredUtcTimezoneString(timezone) {
|
|
|
8072
8099
|
* @dbxUtilTags date, iso8601, day, parse, utc, convert
|
|
8073
8100
|
* @dbxUtilRelated is-iso8601-day-string, start-of-day-for-utc-date-in-utc
|
|
8074
8101
|
*/ function parseISO8601DayStringToUTCDate(inputDateString) {
|
|
8075
|
-
var _inputDateString_split = _sliced_to_array$
|
|
8102
|
+
var _inputDateString_split = _sliced_to_array$k(inputDateString.split('-'), 3), yearString = _inputDateString_split[0], monthString = _inputDateString_split[1], dateString = _inputDateString_split[2];
|
|
8076
8103
|
return new Date(Date.UTC(Number(yearString), Number(monthString) - 1, Number(dateString)));
|
|
8077
8104
|
}
|
|
8078
8105
|
/**
|
|
@@ -8136,7 +8163,7 @@ function isConsideredUtcTimezoneString(timezone) {
|
|
|
8136
8163
|
* @dbxUtilTags date, slash, day, string, convert, parse
|
|
8137
8164
|
* @dbxUtilRelated is-month-day-slash-date
|
|
8138
8165
|
*/ function monthDaySlashDateToDateString(slashDate) {
|
|
8139
|
-
var _slashDate_split = _sliced_to_array$
|
|
8166
|
+
var _slashDate_split = _sliced_to_array$k(slashDate.split('/'), 3), month = _slashDate_split[0], day = _slashDate_split[1], year = _slashDate_split[2];
|
|
8140
8167
|
if (month.length === 1) {
|
|
8141
8168
|
month = "0".concat(month);
|
|
8142
8169
|
}
|
|
@@ -8733,12 +8760,12 @@ function addMilliseconds(input, ms) {
|
|
|
8733
8760
|
};
|
|
8734
8761
|
}
|
|
8735
8762
|
|
|
8736
|
-
function _array_like_to_array$
|
|
8763
|
+
function _array_like_to_array$r(arr, len) {
|
|
8737
8764
|
if (len == null || len > arr.length) len = arr.length;
|
|
8738
8765
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
8739
8766
|
return arr2;
|
|
8740
8767
|
}
|
|
8741
|
-
function _array_with_holes$
|
|
8768
|
+
function _array_with_holes$j(arr) {
|
|
8742
8769
|
if (Array.isArray(arr)) return arr;
|
|
8743
8770
|
}
|
|
8744
8771
|
function _define_property$j(obj, key, value) {
|
|
@@ -8754,7 +8781,7 @@ function _define_property$j(obj, key, value) {
|
|
|
8754
8781
|
}
|
|
8755
8782
|
return obj;
|
|
8756
8783
|
}
|
|
8757
|
-
function _iterable_to_array_limit$
|
|
8784
|
+
function _iterable_to_array_limit$j(arr, i) {
|
|
8758
8785
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
8759
8786
|
if (_i == null) return;
|
|
8760
8787
|
var _arr = [];
|
|
@@ -8778,7 +8805,7 @@ function _iterable_to_array_limit$i(arr, i) {
|
|
|
8778
8805
|
}
|
|
8779
8806
|
return _arr;
|
|
8780
8807
|
}
|
|
8781
|
-
function _non_iterable_rest$
|
|
8808
|
+
function _non_iterable_rest$j() {
|
|
8782
8809
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
8783
8810
|
}
|
|
8784
8811
|
function _object_spread$e(target) {
|
|
@@ -8796,20 +8823,20 @@ function _object_spread$e(target) {
|
|
|
8796
8823
|
}
|
|
8797
8824
|
return target;
|
|
8798
8825
|
}
|
|
8799
|
-
function _sliced_to_array$
|
|
8800
|
-
return _array_with_holes$
|
|
8826
|
+
function _sliced_to_array$j(arr, i) {
|
|
8827
|
+
return _array_with_holes$j(arr) || _iterable_to_array_limit$j(arr, i) || _unsupported_iterable_to_array$r(arr, i) || _non_iterable_rest$j();
|
|
8801
8828
|
}
|
|
8802
8829
|
function _type_of$e(obj) {
|
|
8803
8830
|
"@swc/helpers - typeof";
|
|
8804
8831
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
8805
8832
|
}
|
|
8806
|
-
function _unsupported_iterable_to_array$
|
|
8833
|
+
function _unsupported_iterable_to_array$r(o, minLen) {
|
|
8807
8834
|
if (!o) return;
|
|
8808
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
8835
|
+
if (typeof o === "string") return _array_like_to_array$r(o, minLen);
|
|
8809
8836
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
8810
8837
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
8811
8838
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
8812
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
8839
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$r(o, minLen);
|
|
8813
8840
|
}
|
|
8814
8841
|
/**
|
|
8815
8842
|
* Creates a reusable {@link StripObjectFunction} that filters values from an object and returns
|
|
@@ -9185,7 +9212,7 @@ function _unsupported_iterable_to_array$q(o, minLen) {
|
|
|
9185
9212
|
filter: filter,
|
|
9186
9213
|
// eslint-disable-next-line @typescript-eslint/max-params
|
|
9187
9214
|
forEach: function forEach(param, i, obj, context) {
|
|
9188
|
-
var _param = _sliced_to_array$
|
|
9215
|
+
var _param = _sliced_to_array$j(param, 1), key = _param[0];
|
|
9189
9216
|
context.keys.push(key);
|
|
9190
9217
|
}
|
|
9191
9218
|
});
|
|
@@ -9324,7 +9351,7 @@ function _unsupported_iterable_to_array$q(o, minLen) {
|
|
|
9324
9351
|
var forEachFn = forEachKeyValueOnPOJOFunction({
|
|
9325
9352
|
filter: filter,
|
|
9326
9353
|
forEach: function forEach(param, i, object) {
|
|
9327
|
-
var _param = _sliced_to_array$
|
|
9354
|
+
var _param = _sliced_to_array$j(param, 1), key = _param[0];
|
|
9328
9355
|
delete object[key];
|
|
9329
9356
|
}
|
|
9330
9357
|
});
|
|
@@ -9409,7 +9436,7 @@ function _unsupported_iterable_to_array$q(o, minLen) {
|
|
|
9409
9436
|
filter: filter,
|
|
9410
9437
|
// eslint-disable-next-line @typescript-eslint/max-params
|
|
9411
9438
|
forEach: function forEach(param, i, object, target) {
|
|
9412
|
-
var _param = _sliced_to_array$
|
|
9439
|
+
var _param = _sliced_to_array$j(param, 2), key = _param[0], value = _param[1];
|
|
9413
9440
|
target[key] = value;
|
|
9414
9441
|
}
|
|
9415
9442
|
});
|
|
@@ -9479,7 +9506,7 @@ function _unsupported_iterable_to_array$q(o, minLen) {
|
|
|
9479
9506
|
filter: filter,
|
|
9480
9507
|
// eslint-disable-next-line @typescript-eslint/max-params
|
|
9481
9508
|
forEach: function forEach(param, i, obj, context) {
|
|
9482
|
-
var _param = _sliced_to_array$
|
|
9509
|
+
var _param = _sliced_to_array$j(param, 2), value = _param[1];
|
|
9483
9510
|
context.values.push(value);
|
|
9484
9511
|
}
|
|
9485
9512
|
});
|
|
@@ -9524,7 +9551,7 @@ function _unsupported_iterable_to_array$q(o, minLen) {
|
|
|
9524
9551
|
var invertFilter = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : false;
|
|
9525
9552
|
var keysSet = new Set(keysToFilter);
|
|
9526
9553
|
var filterFn = invertBooleanReturnFunction(function(param) {
|
|
9527
|
-
var _param = _sliced_to_array$
|
|
9554
|
+
var _param = _sliced_to_array$j(param, 1), key = _param[0];
|
|
9528
9555
|
return keysSet.has(key);
|
|
9529
9556
|
}, invertFilter);
|
|
9530
9557
|
return filterTuplesOnPOJOFunction(filterFn);
|
|
@@ -9752,15 +9779,15 @@ function isInSetDecisionFunction(set, inputReadValue) {
|
|
|
9752
9779
|
return input == null ? input : new Set(asArray(input));
|
|
9753
9780
|
}
|
|
9754
9781
|
|
|
9755
|
-
function _array_like_to_array$
|
|
9782
|
+
function _array_like_to_array$q(arr, len) {
|
|
9756
9783
|
if (len == null || len > arr.length) len = arr.length;
|
|
9757
9784
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
9758
9785
|
return arr2;
|
|
9759
9786
|
}
|
|
9760
|
-
function _array_with_holes$
|
|
9787
|
+
function _array_with_holes$i(arr) {
|
|
9761
9788
|
if (Array.isArray(arr)) return arr;
|
|
9762
9789
|
}
|
|
9763
|
-
function _iterable_to_array_limit$
|
|
9790
|
+
function _iterable_to_array_limit$i(arr, i) {
|
|
9764
9791
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
9765
9792
|
if (_i == null) return;
|
|
9766
9793
|
var _arr = [];
|
|
@@ -9784,23 +9811,23 @@ function _iterable_to_array_limit$h(arr, i) {
|
|
|
9784
9811
|
}
|
|
9785
9812
|
return _arr;
|
|
9786
9813
|
}
|
|
9787
|
-
function _non_iterable_rest$
|
|
9814
|
+
function _non_iterable_rest$i() {
|
|
9788
9815
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
9789
9816
|
}
|
|
9790
|
-
function _sliced_to_array$
|
|
9791
|
-
return _array_with_holes$
|
|
9817
|
+
function _sliced_to_array$i(arr, i) {
|
|
9818
|
+
return _array_with_holes$i(arr) || _iterable_to_array_limit$i(arr, i) || _unsupported_iterable_to_array$q(arr, i) || _non_iterable_rest$i();
|
|
9792
9819
|
}
|
|
9793
9820
|
function _type_of$d(obj) {
|
|
9794
9821
|
"@swc/helpers - typeof";
|
|
9795
9822
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
9796
9823
|
}
|
|
9797
|
-
function _unsupported_iterable_to_array$
|
|
9824
|
+
function _unsupported_iterable_to_array$q(o, minLen) {
|
|
9798
9825
|
if (!o) return;
|
|
9799
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
9826
|
+
if (typeof o === "string") return _array_like_to_array$q(o, minLen);
|
|
9800
9827
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
9801
9828
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
9802
9829
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
9803
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
9830
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$q(o, minLen);
|
|
9804
9831
|
}
|
|
9805
9832
|
var DEFAULT_AUTH_ROLE_CLAIMS_CLAIM_VALUE = 1;
|
|
9806
9833
|
var DEFAULT_AUTH_ROLE_CLAIMS_EMPTY_VALUE = null;
|
|
@@ -9899,7 +9926,7 @@ var DEFAULT_AUTH_ROLE_CLAIMS_EMPTY_VALUE = null;
|
|
|
9899
9926
|
var claims = {};
|
|
9900
9927
|
// iterate by each claim value to build the claims.
|
|
9901
9928
|
tuples.forEach(function(param) {
|
|
9902
|
-
var _param = _sliced_to_array$
|
|
9929
|
+
var _param = _sliced_to_array$i(param, 2), claimsKey = _param[0], entry = _param[1];
|
|
9903
9930
|
var _entry_encodeValueFromRoles;
|
|
9904
9931
|
var claimsValue = (_entry_encodeValueFromRoles = entry.encodeValueFromRoles(roles)) !== null && _entry_encodeValueFromRoles !== void 0 ? _entry_encodeValueFromRoles : defaultEmptyValue;
|
|
9905
9932
|
claims[claimsKey] = claimsValue;
|
|
@@ -9909,7 +9936,7 @@ var DEFAULT_AUTH_ROLE_CLAIMS_EMPTY_VALUE = null;
|
|
|
9909
9936
|
var forEachKeyValueAddToSet = forEachKeyValueOnPOJOFunction({
|
|
9910
9937
|
// eslint-disable-next-line @typescript-eslint/max-params
|
|
9911
9938
|
forEach: function forEach(param, i, claims, roles) {
|
|
9912
|
-
var _param = _sliced_to_array$
|
|
9939
|
+
var _param = _sliced_to_array$i(param, 2), claimsKey = _param[0], value = _param[1];
|
|
9913
9940
|
var entry = authRoleMap.get(claimsKey);
|
|
9914
9941
|
if (entry != null) {
|
|
9915
9942
|
var decodedRoles = entry.decodeRolesFromValue(value);
|
|
@@ -9923,7 +9950,7 @@ var DEFAULT_AUTH_ROLE_CLAIMS_EMPTY_VALUE = null;
|
|
|
9923
9950
|
return roles;
|
|
9924
9951
|
};
|
|
9925
9952
|
var claimKeys = tuples.map(function(param) {
|
|
9926
|
-
var _param = _sliced_to_array$
|
|
9953
|
+
var _param = _sliced_to_array$i(param, 1), key = _param[0];
|
|
9927
9954
|
return key;
|
|
9928
9955
|
});
|
|
9929
9956
|
var copyClaims = function copyClaims(source) {
|
|
@@ -10132,12 +10159,12 @@ function base64UrlEncode(bytes) {
|
|
|
10132
10159
|
return btoa(binString).replaceAll('+', '-').replaceAll('/', '_').replace(/=+$/, '');
|
|
10133
10160
|
}
|
|
10134
10161
|
|
|
10135
|
-
function _array_like_to_array$
|
|
10162
|
+
function _array_like_to_array$p(arr, len) {
|
|
10136
10163
|
if (len == null || len > arr.length) len = arr.length;
|
|
10137
10164
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
10138
10165
|
return arr2;
|
|
10139
10166
|
}
|
|
10140
|
-
function _array_with_holes$
|
|
10167
|
+
function _array_with_holes$h(arr) {
|
|
10141
10168
|
if (Array.isArray(arr)) return arr;
|
|
10142
10169
|
}
|
|
10143
10170
|
function _assert_this_initialized$4(self) {
|
|
@@ -10216,7 +10243,7 @@ function _inherits$5(subClass, superClass) {
|
|
|
10216
10243
|
});
|
|
10217
10244
|
if (superClass) _set_prototype_of$5(subClass, superClass);
|
|
10218
10245
|
}
|
|
10219
|
-
function _iterable_to_array_limit$
|
|
10246
|
+
function _iterable_to_array_limit$h(arr, i) {
|
|
10220
10247
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
10221
10248
|
if (_i == null) return;
|
|
10222
10249
|
var _arr = [];
|
|
@@ -10240,7 +10267,7 @@ function _iterable_to_array_limit$g(arr, i) {
|
|
|
10240
10267
|
}
|
|
10241
10268
|
return _arr;
|
|
10242
10269
|
}
|
|
10243
|
-
function _non_iterable_rest$
|
|
10270
|
+
function _non_iterable_rest$h() {
|
|
10244
10271
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
10245
10272
|
}
|
|
10246
10273
|
function _possible_constructor_return$4(self, call) {
|
|
@@ -10256,20 +10283,20 @@ function _set_prototype_of$5(o, p) {
|
|
|
10256
10283
|
};
|
|
10257
10284
|
return _set_prototype_of$5(o, p);
|
|
10258
10285
|
}
|
|
10259
|
-
function _sliced_to_array$
|
|
10260
|
-
return _array_with_holes$
|
|
10286
|
+
function _sliced_to_array$h(arr, i) {
|
|
10287
|
+
return _array_with_holes$h(arr) || _iterable_to_array_limit$h(arr, i) || _unsupported_iterable_to_array$p(arr, i) || _non_iterable_rest$h();
|
|
10261
10288
|
}
|
|
10262
10289
|
function _type_of$c(obj) {
|
|
10263
10290
|
"@swc/helpers - typeof";
|
|
10264
10291
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
10265
10292
|
}
|
|
10266
|
-
function _unsupported_iterable_to_array$
|
|
10293
|
+
function _unsupported_iterable_to_array$p(o, minLen) {
|
|
10267
10294
|
if (!o) return;
|
|
10268
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
10295
|
+
if (typeof o === "string") return _array_like_to_array$p(o, minLen);
|
|
10269
10296
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
10270
10297
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
10271
10298
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
10272
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
10299
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$p(o, minLen);
|
|
10273
10300
|
}
|
|
10274
10301
|
function _is_native_reflect_construct$4() {
|
|
10275
10302
|
try {
|
|
@@ -10532,7 +10559,7 @@ function _ts_generator$d(thisArg, body) {
|
|
|
10532
10559
|
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
10533
10560
|
try {
|
|
10534
10561
|
for(var _iterator = Object.entries(authParams)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
10535
|
-
var _step_value = _sliced_to_array$
|
|
10562
|
+
var _step_value = _sliced_to_array$h(_step.value, 2), key = _step_value[0], value = _step_value[1];
|
|
10536
10563
|
url.searchParams.set(key, value);
|
|
10537
10564
|
}
|
|
10538
10565
|
} catch (err) {
|
|
@@ -11998,21 +12025,21 @@ function _ts_generator$a(thisArg, body) {
|
|
|
11998
12025
|
};
|
|
11999
12026
|
}
|
|
12000
12027
|
|
|
12001
|
-
function _array_like_to_array$
|
|
12028
|
+
function _array_like_to_array$o(arr, len) {
|
|
12002
12029
|
if (len == null || len > arr.length) len = arr.length;
|
|
12003
12030
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
12004
12031
|
return arr2;
|
|
12005
12032
|
}
|
|
12006
|
-
function _array_with_holes$
|
|
12033
|
+
function _array_with_holes$g(arr) {
|
|
12007
12034
|
if (Array.isArray(arr)) return arr;
|
|
12008
12035
|
}
|
|
12009
12036
|
function _array_without_holes$e(arr) {
|
|
12010
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
12037
|
+
if (Array.isArray(arr)) return _array_like_to_array$o(arr);
|
|
12011
12038
|
}
|
|
12012
12039
|
function _iterable_to_array$e(iter) {
|
|
12013
12040
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
12014
12041
|
}
|
|
12015
|
-
function _iterable_to_array_limit$
|
|
12042
|
+
function _iterable_to_array_limit$g(arr, i) {
|
|
12016
12043
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
12017
12044
|
if (_i == null) return;
|
|
12018
12045
|
var _arr = [];
|
|
@@ -12036,25 +12063,25 @@ function _iterable_to_array_limit$f(arr, i) {
|
|
|
12036
12063
|
}
|
|
12037
12064
|
return _arr;
|
|
12038
12065
|
}
|
|
12039
|
-
function _non_iterable_rest$
|
|
12066
|
+
function _non_iterable_rest$g() {
|
|
12040
12067
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
12041
12068
|
}
|
|
12042
12069
|
function _non_iterable_spread$e() {
|
|
12043
12070
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
12044
12071
|
}
|
|
12045
|
-
function _sliced_to_array$
|
|
12046
|
-
return _array_with_holes$
|
|
12072
|
+
function _sliced_to_array$g(arr, i) {
|
|
12073
|
+
return _array_with_holes$g(arr) || _iterable_to_array_limit$g(arr, i) || _unsupported_iterable_to_array$o(arr, i) || _non_iterable_rest$g();
|
|
12047
12074
|
}
|
|
12048
12075
|
function _to_consumable_array$e(arr) {
|
|
12049
|
-
return _array_without_holes$e(arr) || _iterable_to_array$e(arr) || _unsupported_iterable_to_array$
|
|
12076
|
+
return _array_without_holes$e(arr) || _iterable_to_array$e(arr) || _unsupported_iterable_to_array$o(arr) || _non_iterable_spread$e();
|
|
12050
12077
|
}
|
|
12051
|
-
function _unsupported_iterable_to_array$
|
|
12078
|
+
function _unsupported_iterable_to_array$o(o, minLen) {
|
|
12052
12079
|
if (!o) return;
|
|
12053
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
12080
|
+
if (typeof o === "string") return _array_like_to_array$o(o, minLen);
|
|
12054
12081
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
12055
12082
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
12056
12083
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
12057
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
12084
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$o(o, minLen);
|
|
12058
12085
|
}
|
|
12059
12086
|
/**
|
|
12060
12087
|
* Finds the first and last occurrence of a single character within the input string.
|
|
@@ -12073,7 +12100,7 @@ function _unsupported_iterable_to_array$n(o, minLen) {
|
|
|
12073
12100
|
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
12074
12101
|
try {
|
|
12075
12102
|
for(var _iterator = _to_consumable_array$e(input).entries()[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
12076
|
-
var _step_value = _sliced_to_array$
|
|
12103
|
+
var _step_value = _sliced_to_array$g(_step.value, 2), i = _step_value[0], char = _step_value[1];
|
|
12077
12104
|
if (char === find) {
|
|
12078
12105
|
if (first === -1) {
|
|
12079
12106
|
first = i;
|
|
@@ -12168,7 +12195,7 @@ function replaceCharacterAtIndexIf(input, index, replacement, decision) {
|
|
|
12168
12195
|
* @param replacement - String to substitute at the index.
|
|
12169
12196
|
* @returns The string with the character at the index replaced.
|
|
12170
12197
|
*/ function replaceCharacterAtIndexWith(input, index, replacement) {
|
|
12171
|
-
var _splitStringAtIndex = _sliced_to_array$
|
|
12198
|
+
var _splitStringAtIndex = _sliced_to_array$g(splitStringAtIndex(input, index, false), 2), head = _splitStringAtIndex[0], tail = _splitStringAtIndex[1];
|
|
12172
12199
|
return head + replacement + tail;
|
|
12173
12200
|
}
|
|
12174
12201
|
/**
|
|
@@ -12210,7 +12237,7 @@ function replaceCharacterAtIndexIf(input, index, replacement, decision) {
|
|
|
12210
12237
|
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
12211
12238
|
try {
|
|
12212
12239
|
for(var _iterator = _to_consumable_array$e(chars).entries()[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
12213
|
-
var _step_value = _sliced_to_array$
|
|
12240
|
+
var _step_value = _sliced_to_array$g(_step.value, 2), i = _step_value[0], char = _step_value[1];
|
|
12214
12241
|
record[char] = i;
|
|
12215
12242
|
}
|
|
12216
12243
|
} catch (err) {
|
|
@@ -12230,16 +12257,16 @@ function replaceCharacterAtIndexIf(input, index, replacement, decision) {
|
|
|
12230
12257
|
return record;
|
|
12231
12258
|
}
|
|
12232
12259
|
|
|
12233
|
-
function _array_like_to_array$
|
|
12260
|
+
function _array_like_to_array$n(arr, len) {
|
|
12234
12261
|
if (len == null || len > arr.length) len = arr.length;
|
|
12235
12262
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
12236
12263
|
return arr2;
|
|
12237
12264
|
}
|
|
12238
|
-
function _array_with_holes$
|
|
12265
|
+
function _array_with_holes$f(arr) {
|
|
12239
12266
|
if (Array.isArray(arr)) return arr;
|
|
12240
12267
|
}
|
|
12241
12268
|
function _array_without_holes$d(arr) {
|
|
12242
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
12269
|
+
if (Array.isArray(arr)) return _array_like_to_array$n(arr);
|
|
12243
12270
|
}
|
|
12244
12271
|
function _instanceof$2(left, right) {
|
|
12245
12272
|
"@swc/helpers - instanceof";
|
|
@@ -12252,7 +12279,7 @@ function _instanceof$2(left, right) {
|
|
|
12252
12279
|
function _iterable_to_array$d(iter) {
|
|
12253
12280
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
12254
12281
|
}
|
|
12255
|
-
function _iterable_to_array_limit$
|
|
12282
|
+
function _iterable_to_array_limit$f(arr, i) {
|
|
12256
12283
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
12257
12284
|
if (_i == null) return;
|
|
12258
12285
|
var _arr = [];
|
|
@@ -12276,25 +12303,25 @@ function _iterable_to_array_limit$e(arr, i) {
|
|
|
12276
12303
|
}
|
|
12277
12304
|
return _arr;
|
|
12278
12305
|
}
|
|
12279
|
-
function _non_iterable_rest$
|
|
12306
|
+
function _non_iterable_rest$f() {
|
|
12280
12307
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
12281
12308
|
}
|
|
12282
12309
|
function _non_iterable_spread$d() {
|
|
12283
12310
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
12284
12311
|
}
|
|
12285
|
-
function _sliced_to_array$
|
|
12286
|
-
return _array_with_holes$
|
|
12312
|
+
function _sliced_to_array$f(arr, i) {
|
|
12313
|
+
return _array_with_holes$f(arr) || _iterable_to_array_limit$f(arr, i) || _unsupported_iterable_to_array$n(arr, i) || _non_iterable_rest$f();
|
|
12287
12314
|
}
|
|
12288
12315
|
function _to_consumable_array$d(arr) {
|
|
12289
|
-
return _array_without_holes$d(arr) || _iterable_to_array$d(arr) || _unsupported_iterable_to_array$
|
|
12316
|
+
return _array_without_holes$d(arr) || _iterable_to_array$d(arr) || _unsupported_iterable_to_array$n(arr) || _non_iterable_spread$d();
|
|
12290
12317
|
}
|
|
12291
|
-
function _unsupported_iterable_to_array$
|
|
12318
|
+
function _unsupported_iterable_to_array$n(o, minLen) {
|
|
12292
12319
|
if (!o) return;
|
|
12293
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
12320
|
+
if (typeof o === "string") return _array_like_to_array$n(o, minLen);
|
|
12294
12321
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
12295
12322
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
12296
12323
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
12297
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
12324
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$n(o, minLen);
|
|
12298
12325
|
}
|
|
12299
12326
|
/**
|
|
12300
12327
|
* Creates a function that replaces all occurrences of the configured target strings with a replacement value.
|
|
@@ -12447,7 +12474,7 @@ function _unsupported_iterable_to_array$m(o, minLen) {
|
|
|
12447
12474
|
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
12448
12475
|
try {
|
|
12449
12476
|
for(var _iterator = _to_consumable_array$d(input).entries()[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
12450
|
-
var _step_value = _sliced_to_array$
|
|
12477
|
+
var _step_value = _sliced_to_array$f(_step.value, 2), i = _step_value[0], char = _step_value[1];
|
|
12451
12478
|
if (characterSet.has(char)) {
|
|
12452
12479
|
occurrences.push(i);
|
|
12453
12480
|
// return if at the max number of occurences
|
|
@@ -12821,12 +12848,12 @@ function isEqualToValueDecisionFunction(equalityValue) {
|
|
|
12821
12848
|
return equalityValueCheckFunction;
|
|
12822
12849
|
}
|
|
12823
12850
|
|
|
12824
|
-
function _array_like_to_array$
|
|
12851
|
+
function _array_like_to_array$m(arr, len) {
|
|
12825
12852
|
if (len == null || len > arr.length) len = arr.length;
|
|
12826
12853
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
12827
12854
|
return arr2;
|
|
12828
12855
|
}
|
|
12829
|
-
function _array_with_holes$
|
|
12856
|
+
function _array_with_holes$e(arr) {
|
|
12830
12857
|
if (Array.isArray(arr)) return arr;
|
|
12831
12858
|
}
|
|
12832
12859
|
function _define_property$g(obj, key, value) {
|
|
@@ -12842,7 +12869,7 @@ function _define_property$g(obj, key, value) {
|
|
|
12842
12869
|
}
|
|
12843
12870
|
return obj;
|
|
12844
12871
|
}
|
|
12845
|
-
function _iterable_to_array_limit$
|
|
12872
|
+
function _iterable_to_array_limit$e(arr, i) {
|
|
12846
12873
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
12847
12874
|
if (_i == null) return;
|
|
12848
12875
|
var _arr = [];
|
|
@@ -12866,7 +12893,7 @@ function _iterable_to_array_limit$d(arr, i) {
|
|
|
12866
12893
|
}
|
|
12867
12894
|
return _arr;
|
|
12868
12895
|
}
|
|
12869
|
-
function _non_iterable_rest$
|
|
12896
|
+
function _non_iterable_rest$e() {
|
|
12870
12897
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
12871
12898
|
}
|
|
12872
12899
|
function _object_spread$c(target) {
|
|
@@ -12884,20 +12911,20 @@ function _object_spread$c(target) {
|
|
|
12884
12911
|
}
|
|
12885
12912
|
return target;
|
|
12886
12913
|
}
|
|
12887
|
-
function _sliced_to_array$
|
|
12888
|
-
return _array_with_holes$
|
|
12914
|
+
function _sliced_to_array$e(arr, i) {
|
|
12915
|
+
return _array_with_holes$e(arr) || _iterable_to_array_limit$e(arr, i) || _unsupported_iterable_to_array$m(arr, i) || _non_iterable_rest$e();
|
|
12889
12916
|
}
|
|
12890
12917
|
function _type_of$b(obj) {
|
|
12891
12918
|
"@swc/helpers - typeof";
|
|
12892
12919
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
12893
12920
|
}
|
|
12894
|
-
function _unsupported_iterable_to_array$
|
|
12921
|
+
function _unsupported_iterable_to_array$m(o, minLen) {
|
|
12895
12922
|
if (!o) return;
|
|
12896
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
12923
|
+
if (typeof o === "string") return _array_like_to_array$m(o, minLen);
|
|
12897
12924
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
12898
12925
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
12899
12926
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
12900
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
12927
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$m(o, minLen);
|
|
12901
12928
|
}
|
|
12902
12929
|
/**
|
|
12903
12930
|
* The forward-slash character used to separate parts of a slash path.
|
|
@@ -13314,7 +13341,7 @@ var ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX = /\.+/g;
|
|
|
13314
13341
|
}
|
|
13315
13342
|
default:
|
|
13316
13343
|
{
|
|
13317
|
-
var _splitStringAtIndex = _sliced_to_array$
|
|
13344
|
+
var _splitStringAtIndex = _sliced_to_array$e(splitStringAtIndex(inputToEvaluate, last, true), 2), head = _splitStringAtIndex[0], tail = _splitStringAtIndex[1];
|
|
13318
13345
|
var headWithReplacedSeparators = head.replaceAll(ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX, replaceWith);
|
|
13319
13346
|
fixedPath = headWithReplacedSeparators + tail;
|
|
13320
13347
|
break;
|
|
@@ -13713,21 +13740,21 @@ var ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX = /\.+/g;
|
|
|
13713
13740
|
};
|
|
13714
13741
|
}
|
|
13715
13742
|
|
|
13716
|
-
function _array_like_to_array$
|
|
13743
|
+
function _array_like_to_array$l(arr, len) {
|
|
13717
13744
|
if (len == null || len > arr.length) len = arr.length;
|
|
13718
13745
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
13719
13746
|
return arr2;
|
|
13720
13747
|
}
|
|
13721
|
-
function _array_with_holes$
|
|
13748
|
+
function _array_with_holes$d(arr) {
|
|
13722
13749
|
if (Array.isArray(arr)) return arr;
|
|
13723
13750
|
}
|
|
13724
13751
|
function _array_without_holes$c(arr) {
|
|
13725
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
13752
|
+
if (Array.isArray(arr)) return _array_like_to_array$l(arr);
|
|
13726
13753
|
}
|
|
13727
13754
|
function _iterable_to_array$c(iter) {
|
|
13728
13755
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
13729
13756
|
}
|
|
13730
|
-
function _iterable_to_array_limit$
|
|
13757
|
+
function _iterable_to_array_limit$d(arr, i) {
|
|
13731
13758
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
13732
13759
|
if (_i == null) return;
|
|
13733
13760
|
var _arr = [];
|
|
@@ -13751,25 +13778,25 @@ function _iterable_to_array_limit$c(arr, i) {
|
|
|
13751
13778
|
}
|
|
13752
13779
|
return _arr;
|
|
13753
13780
|
}
|
|
13754
|
-
function _non_iterable_rest$
|
|
13781
|
+
function _non_iterable_rest$d() {
|
|
13755
13782
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
13756
13783
|
}
|
|
13757
13784
|
function _non_iterable_spread$c() {
|
|
13758
13785
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
13759
13786
|
}
|
|
13760
|
-
function _sliced_to_array$
|
|
13761
|
-
return _array_with_holes$
|
|
13787
|
+
function _sliced_to_array$d(arr, i) {
|
|
13788
|
+
return _array_with_holes$d(arr) || _iterable_to_array_limit$d(arr, i) || _unsupported_iterable_to_array$l(arr, i) || _non_iterable_rest$d();
|
|
13762
13789
|
}
|
|
13763
13790
|
function _to_consumable_array$c(arr) {
|
|
13764
|
-
return _array_without_holes$c(arr) || _iterable_to_array$c(arr) || _unsupported_iterable_to_array$
|
|
13791
|
+
return _array_without_holes$c(arr) || _iterable_to_array$c(arr) || _unsupported_iterable_to_array$l(arr) || _non_iterable_spread$c();
|
|
13765
13792
|
}
|
|
13766
|
-
function _unsupported_iterable_to_array$
|
|
13793
|
+
function _unsupported_iterable_to_array$l(o, minLen) {
|
|
13767
13794
|
if (!o) return;
|
|
13768
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
13795
|
+
if (typeof o === "string") return _array_like_to_array$l(o, minLen);
|
|
13769
13796
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
13770
13797
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
13771
13798
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
13772
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
13799
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$l(o, minLen);
|
|
13773
13800
|
}
|
|
13774
13801
|
/**
|
|
13775
13802
|
* Returns true if the input string is a known HTTP protocol (`"http"` or `"https"`).
|
|
@@ -13884,7 +13911,7 @@ function _unsupported_iterable_to_array$k(o, minLen) {
|
|
|
13884
13911
|
var pathHasWebsiteDomain = hasWebsiteDomain(domain);
|
|
13885
13912
|
var inputHasPortNumber = hasPortNumber(input);
|
|
13886
13913
|
var portNumber = inputHasPortNumber ? (_readPortNumber = readPortNumber(input)) !== null && _readPortNumber !== void 0 ? _readPortNumber : undefined : undefined;
|
|
13887
|
-
var _splitStringAtFirstCharacterOccurence = _sliced_to_array$
|
|
13914
|
+
var _splitStringAtFirstCharacterOccurence = _sliced_to_array$d(splitStringAtFirstCharacterOccurence(splitPair.path, '?'), 2), path = _splitStringAtFirstCharacterOccurence[0], query = _splitStringAtFirstCharacterOccurence[1]; // everything after the query is ignored
|
|
13888
13915
|
var isWebsiteUrl = pathHasWebsiteDomain && (path === '' || isValidSlashPath(path + '/'));
|
|
13889
13916
|
var inputHasHttpPrefix = hasHttpPrefix(input);
|
|
13890
13917
|
var result = {
|
|
@@ -13998,7 +14025,7 @@ function _unsupported_iterable_to_array$k(o, minLen) {
|
|
|
13998
14025
|
* @param inputPath - The path string to split.
|
|
13999
14026
|
* @returns A pair containing the path and optional query string.
|
|
14000
14027
|
*/ function websitePathAndQueryPair(inputPath) {
|
|
14001
|
-
var _inputPath_split = _sliced_to_array$
|
|
14028
|
+
var _inputPath_split = _sliced_to_array$d(inputPath.split('?', 2), 2), path = _inputPath_split[0], rawQuery = _inputPath_split[1];
|
|
14002
14029
|
var query = rawQuery ? fixExtraQueryParameters(rawQuery, true) : undefined;
|
|
14003
14030
|
return {
|
|
14004
14031
|
path: path,
|
|
@@ -14228,13 +14255,13 @@ function _unsupported_iterable_to_array$k(o, minLen) {
|
|
|
14228
14255
|
return domain;
|
|
14229
14256
|
}
|
|
14230
14257
|
|
|
14231
|
-
function _array_like_to_array$
|
|
14258
|
+
function _array_like_to_array$k(arr, len) {
|
|
14232
14259
|
if (len == null || len > arr.length) len = arr.length;
|
|
14233
14260
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
14234
14261
|
return arr2;
|
|
14235
14262
|
}
|
|
14236
14263
|
function _array_without_holes$b(arr) {
|
|
14237
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
14264
|
+
if (Array.isArray(arr)) return _array_like_to_array$k(arr);
|
|
14238
14265
|
}
|
|
14239
14266
|
function _iterable_to_array$b(iter) {
|
|
14240
14267
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
@@ -14243,15 +14270,15 @@ function _non_iterable_spread$b() {
|
|
|
14243
14270
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
14244
14271
|
}
|
|
14245
14272
|
function _to_consumable_array$b(arr) {
|
|
14246
|
-
return _array_without_holes$b(arr) || _iterable_to_array$b(arr) || _unsupported_iterable_to_array$
|
|
14273
|
+
return _array_without_holes$b(arr) || _iterable_to_array$b(arr) || _unsupported_iterable_to_array$k(arr) || _non_iterable_spread$b();
|
|
14247
14274
|
}
|
|
14248
|
-
function _unsupported_iterable_to_array$
|
|
14275
|
+
function _unsupported_iterable_to_array$k(o, minLen) {
|
|
14249
14276
|
if (!o) return;
|
|
14250
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
14277
|
+
if (typeof o === "string") return _array_like_to_array$k(o, minLen);
|
|
14251
14278
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
14252
14279
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
14253
14280
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
14254
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
14281
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$k(o, minLen);
|
|
14255
14282
|
}
|
|
14256
14283
|
/**
|
|
14257
14284
|
* Converts an EmailParticipant object to a formatted string representation.
|
|
@@ -14763,13 +14790,13 @@ function toReadableError(inputError) {
|
|
|
14763
14790
|
return buffer.includes(PDF_ENCRYPT_MARKER);
|
|
14764
14791
|
}
|
|
14765
14792
|
|
|
14766
|
-
function _array_like_to_array$
|
|
14793
|
+
function _array_like_to_array$j(arr, len) {
|
|
14767
14794
|
if (len == null || len > arr.length) len = arr.length;
|
|
14768
14795
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
14769
14796
|
return arr2;
|
|
14770
14797
|
}
|
|
14771
14798
|
function _array_without_holes$a(arr) {
|
|
14772
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
14799
|
+
if (Array.isArray(arr)) return _array_like_to_array$j(arr);
|
|
14773
14800
|
}
|
|
14774
14801
|
function _iterable_to_array$a(iter) {
|
|
14775
14802
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
@@ -14778,15 +14805,15 @@ function _non_iterable_spread$a() {
|
|
|
14778
14805
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
14779
14806
|
}
|
|
14780
14807
|
function _to_consumable_array$a(arr) {
|
|
14781
|
-
return _array_without_holes$a(arr) || _iterable_to_array$a(arr) || _unsupported_iterable_to_array$
|
|
14808
|
+
return _array_without_holes$a(arr) || _iterable_to_array$a(arr) || _unsupported_iterable_to_array$j(arr) || _non_iterable_spread$a();
|
|
14782
14809
|
}
|
|
14783
|
-
function _unsupported_iterable_to_array$
|
|
14810
|
+
function _unsupported_iterable_to_array$j(o, minLen) {
|
|
14784
14811
|
if (!o) return;
|
|
14785
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
14812
|
+
if (typeof o === "string") return _array_like_to_array$j(o, minLen);
|
|
14786
14813
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
14787
14814
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
14788
14815
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
14789
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
14816
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$j(o, minLen);
|
|
14790
14817
|
}
|
|
14791
14818
|
/*eslint @typescript-eslint/no-explicit-any:"off"*/ // any is used with intent here. using unknown can have strange effects in usage of forwardFunction and type capture.
|
|
14792
14819
|
/**
|
|
@@ -14842,13 +14869,13 @@ function _unsupported_iterable_to_array$i(o, minLen) {
|
|
|
14842
14869
|
*/ // eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
14843
14870
|
function noop() {}
|
|
14844
14871
|
|
|
14845
|
-
function _array_like_to_array$
|
|
14872
|
+
function _array_like_to_array$i(arr, len) {
|
|
14846
14873
|
if (len == null || len > arr.length) len = arr.length;
|
|
14847
14874
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
14848
14875
|
return arr2;
|
|
14849
14876
|
}
|
|
14850
14877
|
function _array_without_holes$9(arr) {
|
|
14851
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
14878
|
+
if (Array.isArray(arr)) return _array_like_to_array$i(arr);
|
|
14852
14879
|
}
|
|
14853
14880
|
function _iterable_to_array$9(iter) {
|
|
14854
14881
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
@@ -14857,15 +14884,15 @@ function _non_iterable_spread$9() {
|
|
|
14857
14884
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
14858
14885
|
}
|
|
14859
14886
|
function _to_consumable_array$9(arr) {
|
|
14860
|
-
return _array_without_holes$9(arr) || _iterable_to_array$9(arr) || _unsupported_iterable_to_array$
|
|
14887
|
+
return _array_without_holes$9(arr) || _iterable_to_array$9(arr) || _unsupported_iterable_to_array$i(arr) || _non_iterable_spread$9();
|
|
14861
14888
|
}
|
|
14862
|
-
function _unsupported_iterable_to_array$
|
|
14889
|
+
function _unsupported_iterable_to_array$i(o, minLen) {
|
|
14863
14890
|
if (!o) return;
|
|
14864
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
14891
|
+
if (typeof o === "string") return _array_like_to_array$i(o, minLen);
|
|
14865
14892
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
14866
14893
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
14867
14894
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
14868
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
14895
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$i(o, minLen);
|
|
14869
14896
|
}
|
|
14870
14897
|
/**
|
|
14871
14898
|
* Builds an array from the intersection of an object's keys with the provided keys.
|
|
@@ -15204,13 +15231,13 @@ function performTaskCountLoop(config) {
|
|
|
15204
15231
|
});
|
|
15205
15232
|
}
|
|
15206
15233
|
|
|
15207
|
-
function _array_like_to_array$
|
|
15234
|
+
function _array_like_to_array$h(arr, len) {
|
|
15208
15235
|
if (len == null || len > arr.length) len = arr.length;
|
|
15209
15236
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
15210
15237
|
return arr2;
|
|
15211
15238
|
}
|
|
15212
15239
|
function _array_without_holes$8(arr) {
|
|
15213
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
15240
|
+
if (Array.isArray(arr)) return _array_like_to_array$h(arr);
|
|
15214
15241
|
}
|
|
15215
15242
|
function asyncGeneratorStep$8(gen, resolve, reject, _next, _throw, key, arg) {
|
|
15216
15243
|
try {
|
|
@@ -15248,15 +15275,15 @@ function _non_iterable_spread$8() {
|
|
|
15248
15275
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
15249
15276
|
}
|
|
15250
15277
|
function _to_consumable_array$8(arr) {
|
|
15251
|
-
return _array_without_holes$8(arr) || _iterable_to_array$8(arr) || _unsupported_iterable_to_array$
|
|
15278
|
+
return _array_without_holes$8(arr) || _iterable_to_array$8(arr) || _unsupported_iterable_to_array$h(arr) || _non_iterable_spread$8();
|
|
15252
15279
|
}
|
|
15253
|
-
function _unsupported_iterable_to_array$
|
|
15280
|
+
function _unsupported_iterable_to_array$h(o, minLen) {
|
|
15254
15281
|
if (!o) return;
|
|
15255
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
15282
|
+
if (typeof o === "string") return _array_like_to_array$h(o, minLen);
|
|
15256
15283
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
15257
15284
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
15258
15285
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
15259
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
15286
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$h(o, minLen);
|
|
15260
15287
|
}
|
|
15261
15288
|
function _ts_generator$8(thisArg, body) {
|
|
15262
15289
|
var f, y, t, _ = {
|
|
@@ -15477,21 +15504,21 @@ function _ts_generator$8(thisArg, body) {
|
|
|
15477
15504
|
};
|
|
15478
15505
|
}
|
|
15479
15506
|
|
|
15480
|
-
function _array_like_to_array$
|
|
15507
|
+
function _array_like_to_array$g(arr, len) {
|
|
15481
15508
|
if (len == null || len > arr.length) len = arr.length;
|
|
15482
15509
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
15483
15510
|
return arr2;
|
|
15484
15511
|
}
|
|
15485
|
-
function _array_with_holes$
|
|
15512
|
+
function _array_with_holes$c(arr) {
|
|
15486
15513
|
if (Array.isArray(arr)) return arr;
|
|
15487
15514
|
}
|
|
15488
15515
|
function _array_without_holes$7(arr) {
|
|
15489
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
15516
|
+
if (Array.isArray(arr)) return _array_like_to_array$g(arr);
|
|
15490
15517
|
}
|
|
15491
15518
|
function _iterable_to_array$7(iter) {
|
|
15492
15519
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
15493
15520
|
}
|
|
15494
|
-
function _iterable_to_array_limit$
|
|
15521
|
+
function _iterable_to_array_limit$c(arr, i) {
|
|
15495
15522
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
15496
15523
|
if (_i == null) return;
|
|
15497
15524
|
var _arr = [];
|
|
@@ -15515,25 +15542,25 @@ function _iterable_to_array_limit$b(arr, i) {
|
|
|
15515
15542
|
}
|
|
15516
15543
|
return _arr;
|
|
15517
15544
|
}
|
|
15518
|
-
function _non_iterable_rest$
|
|
15545
|
+
function _non_iterable_rest$c() {
|
|
15519
15546
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
15520
15547
|
}
|
|
15521
15548
|
function _non_iterable_spread$7() {
|
|
15522
15549
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
15523
15550
|
}
|
|
15524
|
-
function _sliced_to_array$
|
|
15525
|
-
return _array_with_holes$
|
|
15551
|
+
function _sliced_to_array$c(arr, i) {
|
|
15552
|
+
return _array_with_holes$c(arr) || _iterable_to_array_limit$c(arr, i) || _unsupported_iterable_to_array$g(arr, i) || _non_iterable_rest$c();
|
|
15526
15553
|
}
|
|
15527
15554
|
function _to_consumable_array$7(arr) {
|
|
15528
|
-
return _array_without_holes$7(arr) || _iterable_to_array$7(arr) || _unsupported_iterable_to_array$
|
|
15555
|
+
return _array_without_holes$7(arr) || _iterable_to_array$7(arr) || _unsupported_iterable_to_array$g(arr) || _non_iterable_spread$7();
|
|
15529
15556
|
}
|
|
15530
|
-
function _unsupported_iterable_to_array$
|
|
15557
|
+
function _unsupported_iterable_to_array$g(o, minLen) {
|
|
15531
15558
|
if (!o) return;
|
|
15532
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
15559
|
+
if (typeof o === "string") return _array_like_to_array$g(o, minLen);
|
|
15533
15560
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
15534
15561
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
15535
15562
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
15536
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
15563
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$g(o, minLen);
|
|
15537
15564
|
}
|
|
15538
15565
|
/**
|
|
15539
15566
|
* Creates a bidirectional {@link PrimativeKeyDencoderMap} from the given values,
|
|
@@ -15557,7 +15584,7 @@ function _unsupported_iterable_to_array$f(o, minLen) {
|
|
|
15557
15584
|
});
|
|
15558
15585
|
}
|
|
15559
15586
|
valuesArray.forEach(function(value) {
|
|
15560
|
-
var _value = _sliced_to_array$
|
|
15587
|
+
var _value = _sliced_to_array$c(value, 2), d = _value[0], e = _value[1];
|
|
15561
15588
|
if (map.has(d) || map.has(e)) {
|
|
15562
15589
|
throw new Error("primativeKeyDencoderMap() encountered a repeat key/value: ".concat(d, "/").concat(e, ". Keys and values must be unique."));
|
|
15563
15590
|
}
|
|
@@ -15993,12 +16020,12 @@ function _unsupported_iterable_to_array$f(o, minLen) {
|
|
|
15993
16020
|
};
|
|
15994
16021
|
}
|
|
15995
16022
|
|
|
15996
|
-
function _array_like_to_array$
|
|
16023
|
+
function _array_like_to_array$f(arr, len) {
|
|
15997
16024
|
if (len == null || len > arr.length) len = arr.length;
|
|
15998
16025
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
15999
16026
|
return arr2;
|
|
16000
16027
|
}
|
|
16001
|
-
function _array_with_holes$
|
|
16028
|
+
function _array_with_holes$b(arr) {
|
|
16002
16029
|
if (Array.isArray(arr)) return arr;
|
|
16003
16030
|
}
|
|
16004
16031
|
function _define_property$c(obj, key, value) {
|
|
@@ -16027,7 +16054,7 @@ function _inherits$3(subClass, superClass) {
|
|
|
16027
16054
|
});
|
|
16028
16055
|
if (superClass) _set_prototype_of$3(subClass, superClass);
|
|
16029
16056
|
}
|
|
16030
|
-
function _iterable_to_array_limit$
|
|
16057
|
+
function _iterable_to_array_limit$b(arr, i) {
|
|
16031
16058
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
16032
16059
|
if (_i == null) return;
|
|
16033
16060
|
var _arr = [];
|
|
@@ -16051,7 +16078,7 @@ function _iterable_to_array_limit$a(arr, i) {
|
|
|
16051
16078
|
}
|
|
16052
16079
|
return _arr;
|
|
16053
16080
|
}
|
|
16054
|
-
function _non_iterable_rest$
|
|
16081
|
+
function _non_iterable_rest$b() {
|
|
16055
16082
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
16056
16083
|
}
|
|
16057
16084
|
function _object_spread$8(target) {
|
|
@@ -16095,20 +16122,20 @@ function _set_prototype_of$3(o, p) {
|
|
|
16095
16122
|
};
|
|
16096
16123
|
return _set_prototype_of$3(o, p);
|
|
16097
16124
|
}
|
|
16098
|
-
function _sliced_to_array$
|
|
16099
|
-
return _array_with_holes$
|
|
16125
|
+
function _sliced_to_array$b(arr, i) {
|
|
16126
|
+
return _array_with_holes$b(arr) || _iterable_to_array_limit$b(arr, i) || _unsupported_iterable_to_array$f(arr, i) || _non_iterable_rest$b();
|
|
16100
16127
|
}
|
|
16101
16128
|
function _type_of$8(obj) {
|
|
16102
16129
|
"@swc/helpers - typeof";
|
|
16103
16130
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
16104
16131
|
}
|
|
16105
|
-
function _unsupported_iterable_to_array$
|
|
16132
|
+
function _unsupported_iterable_to_array$f(o, minLen) {
|
|
16106
16133
|
if (!o) return;
|
|
16107
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
16134
|
+
if (typeof o === "string") return _array_like_to_array$f(o, minLen);
|
|
16108
16135
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
16109
16136
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
16110
16137
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
16111
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
16138
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$f(o, minLen);
|
|
16112
16139
|
}
|
|
16113
16140
|
function _wrap_reg_exp(re, groups, source) {
|
|
16114
16141
|
_wrap_reg_exp = function(re, groups, source) {
|
|
@@ -16616,7 +16643,7 @@ function latLngString(lat, lng) {
|
|
|
16616
16643
|
* @param latLngString - String in the format `"lat,lng"`
|
|
16617
16644
|
* @returns The parsed point.
|
|
16618
16645
|
*/ function latLngPointFromString(latLngString) {
|
|
16619
|
-
var _latLngString_split = _sliced_to_array$
|
|
16646
|
+
var _latLngString_split = _sliced_to_array$b(latLngString.split(','), 2), latString = _latLngString_split[0], lngString = _latLngString_split[1];
|
|
16620
16647
|
var lat = Number(latString) || 0; // default lat and lng to 0 if not valid.
|
|
16621
16648
|
var lng = Number(lngString) || 0;
|
|
16622
16649
|
return {
|
|
@@ -16747,21 +16774,21 @@ function latLngString(lat, lng) {
|
|
|
16747
16774
|
});
|
|
16748
16775
|
}
|
|
16749
16776
|
|
|
16750
|
-
function _array_like_to_array$
|
|
16777
|
+
function _array_like_to_array$e(arr, len) {
|
|
16751
16778
|
if (len == null || len > arr.length) len = arr.length;
|
|
16752
16779
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
16753
16780
|
return arr2;
|
|
16754
16781
|
}
|
|
16755
|
-
function _array_with_holes$
|
|
16782
|
+
function _array_with_holes$a(arr) {
|
|
16756
16783
|
if (Array.isArray(arr)) return arr;
|
|
16757
16784
|
}
|
|
16758
16785
|
function _array_without_holes$6(arr) {
|
|
16759
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
16786
|
+
if (Array.isArray(arr)) return _array_like_to_array$e(arr);
|
|
16760
16787
|
}
|
|
16761
16788
|
function _iterable_to_array$6(iter) {
|
|
16762
16789
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
16763
16790
|
}
|
|
16764
|
-
function _iterable_to_array_limit$
|
|
16791
|
+
function _iterable_to_array_limit$a(arr, i) {
|
|
16765
16792
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
16766
16793
|
if (_i == null) return;
|
|
16767
16794
|
var _arr = [];
|
|
@@ -16785,29 +16812,29 @@ function _iterable_to_array_limit$9(arr, i) {
|
|
|
16785
16812
|
}
|
|
16786
16813
|
return _arr;
|
|
16787
16814
|
}
|
|
16788
|
-
function _non_iterable_rest$
|
|
16815
|
+
function _non_iterable_rest$a() {
|
|
16789
16816
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
16790
16817
|
}
|
|
16791
16818
|
function _non_iterable_spread$6() {
|
|
16792
16819
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
16793
16820
|
}
|
|
16794
|
-
function _sliced_to_array$
|
|
16795
|
-
return _array_with_holes$
|
|
16821
|
+
function _sliced_to_array$a(arr, i) {
|
|
16822
|
+
return _array_with_holes$a(arr) || _iterable_to_array_limit$a(arr, i) || _unsupported_iterable_to_array$e(arr, i) || _non_iterable_rest$a();
|
|
16796
16823
|
}
|
|
16797
16824
|
function _to_consumable_array$6(arr) {
|
|
16798
|
-
return _array_without_holes$6(arr) || _iterable_to_array$6(arr) || _unsupported_iterable_to_array$
|
|
16825
|
+
return _array_without_holes$6(arr) || _iterable_to_array$6(arr) || _unsupported_iterable_to_array$e(arr) || _non_iterable_spread$6();
|
|
16799
16826
|
}
|
|
16800
16827
|
function _type_of$7(obj) {
|
|
16801
16828
|
"@swc/helpers - typeof";
|
|
16802
16829
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
16803
16830
|
}
|
|
16804
|
-
function _unsupported_iterable_to_array$
|
|
16831
|
+
function _unsupported_iterable_to_array$e(o, minLen) {
|
|
16805
16832
|
if (!o) return;
|
|
16806
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
16833
|
+
if (typeof o === "string") return _array_like_to_array$e(o, minLen);
|
|
16807
16834
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
16808
16835
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
16809
16836
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
16810
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
16837
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$e(o, minLen);
|
|
16811
16838
|
}
|
|
16812
16839
|
/**
|
|
16813
16840
|
* Type guard that checks whether the input is a {@link LatLngBound} by testing for the presence of `sw` and `ne` properties.
|
|
@@ -17050,7 +17077,7 @@ function _unsupported_iterable_to_array$d(o, minLen) {
|
|
|
17050
17077
|
var bound;
|
|
17051
17078
|
if (Array.isArray(input)) {
|
|
17052
17079
|
if (input.length === 2) {
|
|
17053
|
-
var _input = _sliced_to_array$
|
|
17080
|
+
var _input = _sliced_to_array$a(input, 2), sw = _input[0], ne = _input[1];
|
|
17054
17081
|
bound = {
|
|
17055
17082
|
sw: latLngPoint(sw),
|
|
17056
17083
|
ne: latLngPoint(ne)
|
|
@@ -18329,13 +18356,13 @@ function _ts_generator$7(thisArg, body) {
|
|
|
18329
18356
|
};
|
|
18330
18357
|
}
|
|
18331
18358
|
|
|
18332
|
-
function _array_like_to_array$
|
|
18359
|
+
function _array_like_to_array$d(arr, len) {
|
|
18333
18360
|
if (len == null || len > arr.length) len = arr.length;
|
|
18334
18361
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
18335
18362
|
return arr2;
|
|
18336
18363
|
}
|
|
18337
18364
|
function _array_without_holes$5(arr) {
|
|
18338
|
-
if (Array.isArray(arr)) return _array_like_to_array$
|
|
18365
|
+
if (Array.isArray(arr)) return _array_like_to_array$d(arr);
|
|
18339
18366
|
}
|
|
18340
18367
|
function _iterable_to_array$5(iter) {
|
|
18341
18368
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
@@ -18344,15 +18371,15 @@ function _non_iterable_spread$5() {
|
|
|
18344
18371
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
18345
18372
|
}
|
|
18346
18373
|
function _to_consumable_array$5(arr) {
|
|
18347
|
-
return _array_without_holes$5(arr) || _iterable_to_array$5(arr) || _unsupported_iterable_to_array$
|
|
18374
|
+
return _array_without_holes$5(arr) || _iterable_to_array$5(arr) || _unsupported_iterable_to_array$d(arr) || _non_iterable_spread$5();
|
|
18348
18375
|
}
|
|
18349
|
-
function _unsupported_iterable_to_array$
|
|
18376
|
+
function _unsupported_iterable_to_array$d(o, minLen) {
|
|
18350
18377
|
if (!o) return;
|
|
18351
|
-
if (typeof o === "string") return _array_like_to_array$
|
|
18378
|
+
if (typeof o === "string") return _array_like_to_array$d(o, minLen);
|
|
18352
18379
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
18353
18380
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
18354
18381
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
18355
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$
|
|
18382
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$d(o, minLen);
|
|
18356
18383
|
}
|
|
18357
18384
|
/**
|
|
18358
18385
|
* Creates an {@link ObjectDeltaArrayCompressor} that can compress and expand arrays of objects using delta encoding.
|
|
@@ -18526,10 +18553,226 @@ function _object_spread$7(target) {
|
|
|
18526
18553
|
return result;
|
|
18527
18554
|
}
|
|
18528
18555
|
|
|
18556
|
+
function _array_like_to_array$c(arr, len) {
|
|
18557
|
+
if (len == null || len > arr.length) len = arr.length;
|
|
18558
|
+
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
18559
|
+
return arr2;
|
|
18560
|
+
}
|
|
18561
|
+
function _array_with_holes$9(arr) {
|
|
18562
|
+
if (Array.isArray(arr)) return arr;
|
|
18563
|
+
}
|
|
18564
|
+
function _iterable_to_array_limit$9(arr, i) {
|
|
18565
|
+
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
18566
|
+
if (_i == null) return;
|
|
18567
|
+
var _arr = [];
|
|
18568
|
+
var _n = true;
|
|
18569
|
+
var _d = false;
|
|
18570
|
+
var _s, _e;
|
|
18571
|
+
try {
|
|
18572
|
+
for(_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true){
|
|
18573
|
+
_arr.push(_s.value);
|
|
18574
|
+
if (i && _arr.length === i) break;
|
|
18575
|
+
}
|
|
18576
|
+
} catch (err) {
|
|
18577
|
+
_d = true;
|
|
18578
|
+
_e = err;
|
|
18579
|
+
} finally{
|
|
18580
|
+
try {
|
|
18581
|
+
if (!_n && _i["return"] != null) _i["return"]();
|
|
18582
|
+
} finally{
|
|
18583
|
+
if (_d) throw _e;
|
|
18584
|
+
}
|
|
18585
|
+
}
|
|
18586
|
+
return _arr;
|
|
18587
|
+
}
|
|
18588
|
+
function _non_iterable_rest$9() {
|
|
18589
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
18590
|
+
}
|
|
18591
|
+
function _sliced_to_array$9(arr, i) {
|
|
18592
|
+
return _array_with_holes$9(arr) || _iterable_to_array_limit$9(arr, i) || _unsupported_iterable_to_array$c(arr, i) || _non_iterable_rest$9();
|
|
18593
|
+
}
|
|
18529
18594
|
function _type_of$6(obj) {
|
|
18530
18595
|
"@swc/helpers - typeof";
|
|
18531
18596
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
18532
18597
|
}
|
|
18598
|
+
function _unsupported_iterable_to_array$c(o, minLen) {
|
|
18599
|
+
if (!o) return;
|
|
18600
|
+
if (typeof o === "string") return _array_like_to_array$c(o, minLen);
|
|
18601
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
18602
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
18603
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
18604
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array$c(o, minLen);
|
|
18605
|
+
}
|
|
18606
|
+
/**
|
|
18607
|
+
* Creates a reusable {@link CopyValueDeepFunction}.
|
|
18608
|
+
*
|
|
18609
|
+
* Plain objects and arrays are copied recursively. Every other value is retained by reference:
|
|
18610
|
+
* primitives have nothing to copy, and a `Date`/`Map`/`Set`/class instance is a value in its own right,
|
|
18611
|
+
* not a bag of keys to rebuild — copying one key-by-key would replace a `Date` with `{}`. This is what
|
|
18612
|
+
* makes the function safe to use on data that carries such instances (a Firestore `Timestamp`, a
|
|
18613
|
+
* `DocumentReference`) alongside plain json.
|
|
18614
|
+
*
|
|
18615
|
+
* The root value itself is never filtered — only the values found within an object or array are, since
|
|
18616
|
+
* the filter is a decision about a key/value pair. A root `undefined` therefore copies to `undefined`.
|
|
18617
|
+
*
|
|
18618
|
+
* Repeated and cyclical references are tracked, so a value referenced twice is copied once and a cycle
|
|
18619
|
+
* terminates rather than overflowing the stack.
|
|
18620
|
+
*
|
|
18621
|
+
* @param config - Filter, array handling, and transform configuration. Defaults to removing `undefined` values.
|
|
18622
|
+
* @returns Recursively copies any input value.
|
|
18623
|
+
*
|
|
18624
|
+
* @dbxUtil
|
|
18625
|
+
* @dbxUtilCategory object
|
|
18626
|
+
* @dbxUtilKind factory
|
|
18627
|
+
* @dbxUtilTags object, copy, clone, deep, recursive, filter, transform, undefined, factory
|
|
18628
|
+
* @dbxUtilRelated copy-value-deep, filter-from-pojo-function, copy-object
|
|
18629
|
+
*
|
|
18630
|
+
* @example
|
|
18631
|
+
* ```ts
|
|
18632
|
+
* // remove undefined values at any depth
|
|
18633
|
+
* const copyFn = copyValueDeepFunction();
|
|
18634
|
+
* copyFn({ a: 1, b: undefined, c: { d: undefined, e: [1, undefined] } });
|
|
18635
|
+
* // { a: 1, c: { e: [1] } }
|
|
18636
|
+
*
|
|
18637
|
+
* // remove null and undefined values, and prune anything left empty
|
|
18638
|
+
* const copyCleanFn = copyValueDeepFunction({ filter: KeyValueTypleValueFilter.NULL, filterEmptyValues: true });
|
|
18639
|
+
* copyCleanFn({ a: 1, b: { c: null } });
|
|
18640
|
+
* // { a: 1 }
|
|
18641
|
+
* ```
|
|
18642
|
+
*
|
|
18643
|
+
* @__NO_SIDE_EFFECTS__
|
|
18644
|
+
*/ function copyValueDeepFunction(config) {
|
|
18645
|
+
var _ref = config !== null && config !== void 0 ? config : {}, _ref_filter = _ref.filter, filter = _ref_filter === void 0 ? KeyValueTypleValueFilter.UNDEFINED : _ref_filter, _ref_arrayValues = _ref.arrayValues, arrayValues = _ref_arrayValues === void 0 ? 'remove' : _ref_arrayValues, _ref_filterEmptyValues = _ref.filterEmptyValues, filterEmptyValues = _ref_filterEmptyValues === void 0 ? false : _ref_filterEmptyValues, transform = _ref.transform;
|
|
18646
|
+
var retainKeyValue = filterKeyValueTupleFunction(filter);
|
|
18647
|
+
/**
|
|
18648
|
+
* Returns true if the copied value is retained by the filter.
|
|
18649
|
+
*
|
|
18650
|
+
* @param key - The key/index the value was read from.
|
|
18651
|
+
* @param value - The already-copied value.
|
|
18652
|
+
* @param index - The index of the key/value pair within its parent.
|
|
18653
|
+
* @returns `true` if the value is kept.
|
|
18654
|
+
*/ function retainValue(key, value, index) {
|
|
18655
|
+
var result = retainKeyValue([
|
|
18656
|
+
key,
|
|
18657
|
+
value
|
|
18658
|
+
], index);
|
|
18659
|
+
if (result && filterEmptyValues) {
|
|
18660
|
+
result = !isEmptyCopiedValue(value);
|
|
18661
|
+
}
|
|
18662
|
+
return result;
|
|
18663
|
+
}
|
|
18664
|
+
function copyValue(input, key, copied) {
|
|
18665
|
+
var value = transform ? transform(input, key) : input;
|
|
18666
|
+
var result;
|
|
18667
|
+
if (value == null || (typeof value === "undefined" ? "undefined" : _type_of$6(value)) !== 'object') {
|
|
18668
|
+
result = value; // nothing to copy
|
|
18669
|
+
} else if (copied.has(value)) {
|
|
18670
|
+
result = copied.get(value); // repeated or cyclical reference
|
|
18671
|
+
} else if (Array.isArray(value)) {
|
|
18672
|
+
var array = [];
|
|
18673
|
+
copied.set(value, array);
|
|
18674
|
+
value.forEach(function(inputValue, i) {
|
|
18675
|
+
var copiedValue = copyValue(inputValue, i, copied);
|
|
18676
|
+
if (arrayValues === 'retain' || retainValue(i, copiedValue, i)) {
|
|
18677
|
+
array.push(copiedValue);
|
|
18678
|
+
} else if (arrayValues === 'nullify') {
|
|
18679
|
+
array.push(null);
|
|
18680
|
+
}
|
|
18681
|
+
});
|
|
18682
|
+
result = array;
|
|
18683
|
+
} else if (isPlainObject(value)) {
|
|
18684
|
+
var object = {};
|
|
18685
|
+
copied.set(value, object);
|
|
18686
|
+
Object.entries(value).forEach(function(param, i) {
|
|
18687
|
+
var _param = _sliced_to_array$9(param, 2), valueKey = _param[0], inputValue = _param[1];
|
|
18688
|
+
var copiedValue = copyValue(inputValue, valueKey, copied);
|
|
18689
|
+
if (retainValue(valueKey, copiedValue, i)) {
|
|
18690
|
+
object[valueKey] = copiedValue;
|
|
18691
|
+
}
|
|
18692
|
+
});
|
|
18693
|
+
result = object;
|
|
18694
|
+
} else {
|
|
18695
|
+
result = value; // Date/Map/Set/class instances are retained by reference
|
|
18696
|
+
}
|
|
18697
|
+
return result;
|
|
18698
|
+
}
|
|
18699
|
+
return function(value) {
|
|
18700
|
+
return copyValue(value, undefined, new Map());
|
|
18701
|
+
};
|
|
18702
|
+
}
|
|
18703
|
+
/**
|
|
18704
|
+
* Recursively copies a value, filtering values as it goes.
|
|
18705
|
+
*
|
|
18706
|
+
* See {@link copyValueDeepFunction} for the copy/filter semantics. Prefer the factory when copying more
|
|
18707
|
+
* than one value with the same configuration.
|
|
18708
|
+
*
|
|
18709
|
+
* @param value - The value to copy.
|
|
18710
|
+
* @param config - Filter, array handling, and transform configuration. Defaults to removing `undefined` values.
|
|
18711
|
+
* @returns A recursive copy of the value.
|
|
18712
|
+
*
|
|
18713
|
+
* @dbxUtil
|
|
18714
|
+
* @dbxUtilCategory object
|
|
18715
|
+
* @dbxUtilTags object, copy, clone, deep, recursive, filter, transform, undefined
|
|
18716
|
+
* @dbxUtilRelated copy-value-deep-function, filter-from-pojo, copy-object
|
|
18717
|
+
*
|
|
18718
|
+
* @example
|
|
18719
|
+
* ```ts
|
|
18720
|
+
* copyValueDeep({ a: 1, b: { c: undefined } });
|
|
18721
|
+
* // { a: 1, b: {} }
|
|
18722
|
+
* ```
|
|
18723
|
+
*/ function copyValueDeep(value, config) {
|
|
18724
|
+
return copyValueDeepFunction(config)(value);
|
|
18725
|
+
}
|
|
18726
|
+
/**
|
|
18727
|
+
* Pre-built {@link CopyValueDeepFunction} that recursively copies a value, removing every `undefined`
|
|
18728
|
+
* value at every depth.
|
|
18729
|
+
*
|
|
18730
|
+
* This is the deep counterpart to {@link filterOnlyUndefinedValues}, and is what a consumer that rejects
|
|
18731
|
+
* `undefined` outright (Firestore, `JSON.stringify` in a strict schema) needs before a write.
|
|
18732
|
+
*
|
|
18733
|
+
* @example
|
|
18734
|
+
* ```ts
|
|
18735
|
+
* copyValueWithoutUndefinedValues({ a: 1, b: undefined, c: [{ d: undefined }] });
|
|
18736
|
+
* // { a: 1, c: [{}] }
|
|
18737
|
+
* ```
|
|
18738
|
+
*/ var copyValueWithoutUndefinedValues = copyValueDeepFunction({
|
|
18739
|
+
filter: KeyValueTypleValueFilter.UNDEFINED
|
|
18740
|
+
});
|
|
18741
|
+
/**
|
|
18742
|
+
* Pre-built {@link CopyValueDeepFunction} that recursively copies a value, removing every `null` and
|
|
18743
|
+
* `undefined` value at every depth.
|
|
18744
|
+
*
|
|
18745
|
+
* This is the deep counterpart to {@link filterNullAndUndefinedValues}.
|
|
18746
|
+
*
|
|
18747
|
+
* @example
|
|
18748
|
+
* ```ts
|
|
18749
|
+
* copyValueWithoutNullAndUndefinedValues({ a: 1, b: null, c: [{ d: undefined }] });
|
|
18750
|
+
* // { a: 1, c: [{}] }
|
|
18751
|
+
* ```
|
|
18752
|
+
*/ var copyValueWithoutNullAndUndefinedValues = copyValueDeepFunction({
|
|
18753
|
+
filter: KeyValueTypleValueFilter.NULL
|
|
18754
|
+
});
|
|
18755
|
+
/**
|
|
18756
|
+
* Returns true if the value is a copied object/array that the copy left with no values.
|
|
18757
|
+
*
|
|
18758
|
+
* Only plain objects and arrays qualify — a `Date` has no keys either, and is not empty.
|
|
18759
|
+
*
|
|
18760
|
+
* @param value - The copied value to check.
|
|
18761
|
+
* @returns `true` if the value is an empty plain object or array.
|
|
18762
|
+
*/ function isEmptyCopiedValue(value) {
|
|
18763
|
+
var result = false;
|
|
18764
|
+
if (Array.isArray(value)) {
|
|
18765
|
+
result = value.length === 0;
|
|
18766
|
+
} else if (isPlainObject(value)) {
|
|
18767
|
+
result = objectHasNoKeys(value);
|
|
18768
|
+
}
|
|
18769
|
+
return result;
|
|
18770
|
+
}
|
|
18771
|
+
|
|
18772
|
+
function _type_of$5(obj) {
|
|
18773
|
+
"@swc/helpers - typeof";
|
|
18774
|
+
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
18775
|
+
}
|
|
18533
18776
|
/**
|
|
18534
18777
|
* Recursively checks whether an object is "empty" — meaning it is null/undefined, has no keys,
|
|
18535
18778
|
* or all of its values are themselves empty (recursively for nested objects, or falsy for primitives).
|
|
@@ -18543,7 +18786,7 @@ function _type_of$6(obj) {
|
|
|
18543
18786
|
* @dbxUtilRelated object-has-no-keys, has-value-or-not-empty-object
|
|
18544
18787
|
*/ function objectIsEmpty(obj) {
|
|
18545
18788
|
var empty = true;
|
|
18546
|
-
if (obj != null && (typeof obj === "undefined" ? "undefined" : _type_of$
|
|
18789
|
+
if (obj != null && (typeof obj === "undefined" ? "undefined" : _type_of$5(obj)) === 'object') {
|
|
18547
18790
|
var keys = Object.keys(obj);
|
|
18548
18791
|
if (keys.length > 0) {
|
|
18549
18792
|
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
@@ -18551,7 +18794,7 @@ function _type_of$6(obj) {
|
|
|
18551
18794
|
for(var _iterator = keys[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
18552
18795
|
var key = _step.value;
|
|
18553
18796
|
var value = obj[key];
|
|
18554
|
-
var isEmpty = (typeof value === "undefined" ? "undefined" : _type_of$
|
|
18797
|
+
var isEmpty = (typeof value === "undefined" ? "undefined" : _type_of$5(value)) === 'object' ? objectIsEmpty(value) : !hasValueOrNotEmpty(value);
|
|
18555
18798
|
if (!isEmpty) {
|
|
18556
18799
|
empty = false;
|
|
18557
18800
|
break;
|
|
@@ -19094,7 +19337,7 @@ function _ts_generator$6(thisArg, body) {
|
|
|
19094
19337
|
})();
|
|
19095
19338
|
}
|
|
19096
19339
|
|
|
19097
|
-
function _type_of$
|
|
19340
|
+
function _type_of$4(obj) {
|
|
19098
19341
|
"@swc/helpers - typeof";
|
|
19099
19342
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
19100
19343
|
}
|
|
@@ -19110,7 +19353,7 @@ function _type_of$5(obj) {
|
|
|
19110
19353
|
* @dbxUtilRelated is-promise-like, as-promise
|
|
19111
19354
|
*/ function isPromise(obj) {
|
|
19112
19355
|
// https://github.com/then/is-promise
|
|
19113
|
-
return !!obj && ((typeof obj === "undefined" ? "undefined" : _type_of$
|
|
19356
|
+
return !!obj && ((typeof obj === "undefined" ? "undefined" : _type_of$4(obj)) === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
|
|
19114
19357
|
}
|
|
19115
19358
|
/**
|
|
19116
19359
|
* Checks whether the input value is PromiseLike (i.e., has a `.then` method), which
|
|
@@ -19125,7 +19368,7 @@ function _type_of$5(obj) {
|
|
|
19125
19368
|
* @dbxUtilRelated is-promise, as-promise
|
|
19126
19369
|
*/ function isPromiseLike(obj) {
|
|
19127
19370
|
// https://github.com/then/is-promise
|
|
19128
|
-
return !!obj && ((typeof obj === "undefined" ? "undefined" : _type_of$
|
|
19371
|
+
return !!obj && ((typeof obj === "undefined" ? "undefined" : _type_of$4(obj)) === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
|
|
19129
19372
|
}
|
|
19130
19373
|
|
|
19131
19374
|
function asyncGeneratorStep$5(gen, resolve, reject, _next, _throw, key, arg) {
|
|
@@ -21252,7 +21495,7 @@ function _inherits$2(subClass, superClass) {
|
|
|
21252
21495
|
if (superClass) _set_prototype_of$2(subClass, superClass);
|
|
21253
21496
|
}
|
|
21254
21497
|
function _possible_constructor_return$2(self, call) {
|
|
21255
|
-
if (call && (_type_of$
|
|
21498
|
+
if (call && (_type_of$3(call) === "object" || typeof call === "function")) {
|
|
21256
21499
|
return call;
|
|
21257
21500
|
}
|
|
21258
21501
|
return _assert_this_initialized$2(self);
|
|
@@ -21264,7 +21507,7 @@ function _set_prototype_of$2(o, p) {
|
|
|
21264
21507
|
};
|
|
21265
21508
|
return _set_prototype_of$2(o, p);
|
|
21266
21509
|
}
|
|
21267
|
-
function _type_of$
|
|
21510
|
+
function _type_of$3(obj) {
|
|
21268
21511
|
"@swc/helpers - typeof";
|
|
21269
21512
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
21270
21513
|
}
|
|
@@ -21690,7 +21933,7 @@ function _non_iterable_rest$6() {
|
|
|
21690
21933
|
function _sliced_to_array$6(arr, i) {
|
|
21691
21934
|
return _array_with_holes$6(arr) || _iterable_to_array_limit$6(arr, i) || _unsupported_iterable_to_array$8(arr, i) || _non_iterable_rest$6();
|
|
21692
21935
|
}
|
|
21693
|
-
function _type_of$
|
|
21936
|
+
function _type_of$2(obj) {
|
|
21694
21937
|
"@swc/helpers - typeof";
|
|
21695
21938
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
21696
21939
|
}
|
|
@@ -21743,12 +21986,12 @@ function _unsupported_iterable_to_array$8(o, minLen) {
|
|
|
21743
21986
|
// check one value is nullish and other is not
|
|
21744
21987
|
if ((a == null || b == null) && (a || b)) {
|
|
21745
21988
|
result = false;
|
|
21746
|
-
} else if ((typeof a === "undefined" ? "undefined" : _type_of$
|
|
21989
|
+
} else if ((typeof a === "undefined" ? "undefined" : _type_of$2(a)) !== 'object') {
|
|
21747
21990
|
result = false;
|
|
21748
21991
|
} else if (isIterable(a, false)) {
|
|
21749
21992
|
// check if they are iterables (arrays, Sets, Maps)
|
|
21750
21993
|
result = _compareIterables(a, b, pojoFilter);
|
|
21751
|
-
} else if ((typeof b === "undefined" ? "undefined" : _type_of$
|
|
21994
|
+
} else if ((typeof b === "undefined" ? "undefined" : _type_of$2(b)) === 'object') {
|
|
21752
21995
|
// check plain object comparison
|
|
21753
21996
|
result = _compareObjects(a, b, pojoFilter);
|
|
21754
21997
|
} else {
|
|
@@ -21845,7 +22088,7 @@ function _compareObjects(a, b, pojoFilter) {
|
|
|
21845
22088
|
var _fields = new Map();
|
|
21846
22089
|
fields.forEach(function(input) {
|
|
21847
22090
|
var field;
|
|
21848
|
-
if ((typeof input === "undefined" ? "undefined" : _type_of$
|
|
22091
|
+
if ((typeof input === "undefined" ? "undefined" : _type_of$2(input)) === 'object') {
|
|
21849
22092
|
field = input;
|
|
21850
22093
|
} else {
|
|
21851
22094
|
field = {
|
|
@@ -22070,10 +22313,6 @@ function _unsupported_iterable_to_array$7(o, minLen) {
|
|
|
22070
22313
|
return nextKey;
|
|
22071
22314
|
});
|
|
22072
22315
|
|
|
22073
|
-
function _type_of$2(obj) {
|
|
22074
|
-
"@swc/helpers - typeof";
|
|
22075
|
-
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
22076
|
-
}
|
|
22077
22316
|
/**
|
|
22078
22317
|
* Flattens a nested object into a single-level object with concatenated keys.
|
|
22079
22318
|
*
|
|
@@ -22117,7 +22356,7 @@ function _type_of$2(obj) {
|
|
|
22117
22356
|
var key = _step.value;
|
|
22118
22357
|
var value = obj[key];
|
|
22119
22358
|
var fullKey = prefix ? "".concat(prefix).concat(separator).concat(key) : key;
|
|
22120
|
-
if (
|
|
22359
|
+
if (isPlainObject(value) && currentDepth < maxDepth && !seen.has(value)) {
|
|
22121
22360
|
recurse(value, fullKey, currentDepth + 1);
|
|
22122
22361
|
} else {
|
|
22123
22362
|
result[fullKey] = value;
|
|
@@ -22142,19 +22381,6 @@ function _type_of$2(obj) {
|
|
|
22142
22381
|
}
|
|
22143
22382
|
return result;
|
|
22144
22383
|
}
|
|
22145
|
-
/**
|
|
22146
|
-
* Returns true if the value is a plain object (not an array, Date, RegExp, null, etc.).
|
|
22147
|
-
*
|
|
22148
|
-
* @param value - The value to check.
|
|
22149
|
-
* @returns True if the value is a plain object with an Object or null prototype.
|
|
22150
|
-
*/ function _isPlainObject(value) {
|
|
22151
|
-
var result = false;
|
|
22152
|
-
if (value != null && (typeof value === "undefined" ? "undefined" : _type_of$2(value)) === 'object') {
|
|
22153
|
-
var proto = Object.getPrototypeOf(value);
|
|
22154
|
-
result = proto === Object.prototype || proto === null;
|
|
22155
|
-
}
|
|
22156
|
-
return result;
|
|
22157
|
-
}
|
|
22158
22384
|
|
|
22159
22385
|
/**
|
|
22160
22386
|
* Creates a function that copies a single field from a partial source object to a partial target object.
|
|
@@ -26273,4 +26499,4 @@ function classifyRemainingSegments(config) {
|
|
|
26273
26499
|
];
|
|
26274
26500
|
}
|
|
26275
26501
|
|
|
26276
|
-
export { ALL_DOUBLE_SLASHES_REGEX, ALL_SLASHES_REGEX, ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX, ALL_TIME_UNITS, APPLICATION_FILE_EXTENSION_TO_MIME_TYPES_RECORD, APPLICATION_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, ASSERTION_ERROR_CODE, ASSERTION_HANDLER, AUTH_ADMIN_ROLE, AUTH_ONBOARDED_ROLE, AUTH_TOS_SIGNED_ROLE, AUTH_USER_ROLE, AbstractUniqueModel, Assert, AssertMax, AssertMin, AssertionError, AssertionIssueHandler, BooleanStringKeyArrayUtility, CANONICAL_KINDS, CATCH_ALL_HANDLE_RESULT_KEY, COMMA_JOINER, COMMA_STRING_SPLIT_JOIN, CSV_MIME_TYPE, CUT_VALUE_TO_ZERO_PRECISION, DASH_CHARACTER_PREFIX_INSTANCE, DATE_NOW_VALUE, DAYS_IN_WEEK, DAYS_IN_YEAR, DEFAULT_AUTH_ROLE_CLAIMS_CLAIM_VALUE, DEFAULT_AUTH_ROLE_CLAIMS_EMPTY_VALUE, DEFAULT_CUT_STRING_END_TEXT, DEFAULT_ENCRYPTED_FIELD_PREFIX, DEFAULT_LAT_LNG_STRING_VALUE, DEFAULT_NAME_TO_INITIALS_MAX_INITIALS, DEFAULT_NAME_TO_INITIALS_MIN_INITIALS, DEFAULT_NUMBER_STRING_DENCODER_64_NEGATIVE_PREFIX, DEFAULT_OIDC_RELYING_PARTY_SCOPE, 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_SLASH_PATH_PATH_MATCHER_NON_MATCHING_FILL_VALUE, DEFAULT_UNKNOWN_MODEL_TYPE_STRING, DOCUMENT_FILE_EXTENSION_TO_MIME_TYPES_RECORD, DOCUMENT_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, DOCX_MIME_TYPE, 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, ExploreTreeVisitNodeDecision, FINAL_PAGE, FIRST_PAGE, FRACTIONAL_HOURS_PRECISION_FUNCTION, FlattenTreeAddNodeDecision, FullStorageObject, GIF_MIME_TYPE, HAS_PORT_NUMBER_REGEX, HAS_WEBSITE_DOMAIN_NAME_REGEX, HEIF_MIME_TYPE, HEX_PATTERN, HOURS_IN_DAY, HOUR_OF_DAY_MAXMIMUM, HOUR_OF_DAY_MINIUMUM, HTML_MIME_TYPE, HTTP_OR_HTTPS_REGEX, HTTP_UNAUTHORIZED_STATUS_CODE, HashSet, IMAGE_FILE_EXTENSION_TO_MIME_TYPES_RECORD, IMAGE_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, IMPERSONATION_URL_QUERY_PARAM, ISO8601_DAY_STRING_REGEX, ISO8601_DAY_STRING_START_REGEX, ISO_8601_DATE_STRING_REGEX, JPEG_MIME_TYPE, JPEG_MIME_TYPES, JPG_MIME_TYPE, JSON_MIME_TYPE, 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, MARKDOWN_MIME_TYPE, MAX_BITWISE_SET_SIZE, MAX_LATITUDE_VALUE, MAX_LONGITUDE_VALUE, MINUTES_IN_DAY, MINUTES_IN_HOUR, MINUTE_OF_DAY_MAXMIMUM, MINUTE_OF_DAY_MINIUMUM, MIN_LATITUDE_VALUE, MIN_LONGITUDE_VALUE, MONTH_DAY_SLASH_DATE_STRING_REGEX, MS_IN_DAY, MS_IN_HOUR, MS_IN_MINUTE, MS_IN_SECOND, MS_IN_WEEK, MemoryStorageInstance, ModelRelationUtility, NOOP_MODIFIER, NUMBER_STRING_DENCODER_64, NUMBER_STRING_DENCODER_64_DIGITS, OAUTH_OOB_REDIRECT_URI, OidcRelyingPartyError, PDF_ENCRYPT_MARKER, PDF_EOF_MARKER, PDF_HEADER, PDF_MIME_TYPE, PHONE_EXTENSION_NUMBER_REGEX, PJPEG_MIME_TYPE, PNG_MIME_TYPE, PRIMATIVE_KEY_DENCODER_VALUE, PropertyDescriptorUtility, RAW_MIME_TYPE, REGEX_SPECIAL_CHARACTERS, REGEX_SPECIAL_CHARACTERS_SET, RelationChange, SECONDS_IN_DAY, SECONDS_IN_HOUR, 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, SPACE_JOINER, SPACE_STRING_SPLIT_JOIN, SPLIT_STRING_TREE_NODE_ROOT_VALUE, SVG_MIME_TYPE, ServerErrorResponse, SetDeltaChange, SimpleStorageObject, SlashPathPathMatcherPartCode, StorageObject, StorageObjectUtility, StoredDataError, SyncState, TIFF_MIME_TYPE, TIME_UNIT_LABEL_MAP, TIME_UNIT_SHORT_LABEL_MAP, TOTAL_LATITUDE_RANGE, TOTAL_LONGITUDE_RANGE, TOTAL_SPAN_OF_LONGITUDE, TRAILING_FILE_TYPE_SEPARATORS_REGEX, TRAILING_SLASHES_REGEX, TXT_MIME_TYPE, TimeAM, TimerCancelledError, TypedServiceRegistryInstance, UNLOADED_PAGE, UNSET_INDEX_NUMBER, US_STATE_CODE_STRING_REGEX, UTC_DATE_STRING_REGEX, UTC_TIMEZONE_STRING, UTF_8_START_CHARACTER, UTF_PRIVATE_USAGE_AREA_START, UnauthorizedServerErrorResponse, WEBP_MIME_TYPE, WEBSITE_TLD_DETECTION_REGEX, WEB_PROTOCOL_PREFIX_REGEX, XLSX_MIME_TYPE, XML_MIME_TYPE, YAML_MIME_TYPE, ZIP_CODE_STRING_REGEX, ZIP_FILE_MIME_TYPE, addHttpToUrl, addLatLngPoints, addMilliseconds, addModifiers, addPlusPrefixToNumber, addPrefix, addPrefixFunction, addSuffix, addSuffixFunction, addToSet, addToSetCopy, addToSplitStringTree, addTrailingSlash, allFalsyOrEmptyKeys, allIndexesInIndexRange, allKeyValueTuples, allMaybeSoKeys, allNonUndefinedKeys, allObjectsAreEqual, allValuesAreMaybeNot, allValuesAreNotMaybe, allowValueOnceFilter, applicationFileExtensionForMimeType, applyBestFit, applySplitStringTreeWithMultipleValues, applyToMultipleFields, approximateTimerEndDate, areEqualContext, areEqualPOJOValues, areEqualPOJOValuesUsingPojoFilter, arrayContainsDuplicateValue, arrayContentsDiffer, arrayDecision, arrayDecisionFunction, arrayFactory, arrayInputFactory, arrayToLowercase, arrayToMap, arrayToObject, arrayToUppercase, asArray, asDecisionFunction, asGetter, asIndexRangeCheckFunctionConfig, asIterable, asMinuteOfDay, asNonEmptyArray, asNumber, asObjectCopyFactory, asPromise, asSet, assignValuesToPOJO, assignValuesToPOJOFunction, authClaims, authRoleClaimsService, authRolesSetHasRoles, baseWebsiteUrl, batch, batchCalc, bitwiseObjectDencoder, bitwiseObjectEncoder, bitwiseObjectdecoder, bitwiseSetDecoder, bitwiseSetDencoder, booleanFactory, booleanKeyArrayUtility, boundNumber, boundNumberFunction, boundToRectangle, breadthFirstExploreTreeTraversalFactoryFunction, bufferHasValidPdfMarkings, build, buildAuthorizationUrl, buildCanonicalFilename, buildOidcDiscoveryCandidates, cachedGetter, calculateExpirationDate, camelOrPascalToScreamingSnake, capLatValue, capitalizeFirstLetter, caseInsensitiveFilterByIndexOfDecisionFactory, caseInsensitiveString, catchAllHandlerKey, chainMapFunction, chainMapSameFunctions, characterPrefixSuffixInstance, checkAnyHaveExpired, checkAtleastOneNotExpired, classifySpecFile, coerceToEmailParticipants, combineMaps, compareEqualityWithValueFromItemsFunction, compareEqualityWithValueFromItemsFunctionFactory, compareFnOrder, compareStrings, compareStringsNumeric, compareWithMappedValuesFunction, computeNextFractionalHour, computeNextFreeIndexFunction, computeNextFreeIndexOnSortedValuesFunction, concatArrays, concatArraysUnique, containsAllStringsAnyCase, containsAllValues, containsAnyStringAnyCase, containsAnyValue, containsAnyValueFromSet, containsNoValueFromSet, containsNoneOfValue, containsStringAnyCase, convertEmailParticipantStringToParticipant, convertMaybeToArray, convertMaybeToNonEmptyArray, convertParticipantToEmailParticipantString, convertTimeDuration, convertToArray, copyArray, copyField, copyLatLngBound, copyLatLngPoint, copyObject, copySetAndDo, countAllInNestedArray, countPOJOKeys, countPOJOKeysFunction, cronExpressionRepeatingEveryNMinutes, cssClassesSet, cssTokenVar, cssVariableVar, cutString, cutStringFunction, cutToPrecision, cutValueToInteger, cutValueToPrecision, cutValueToPrecisionFunction, dateFromDateOrTimeMillisecondsNumber, dateFromDateOrTimeSecondsNumber, dateFromLogicalDate, dateFromMinuteOfDay, dateOrMillisecondsToDate, dateToHoursAndMinutes, dateToMinuteOfDay, dayOfWeek, daysOfWeekArray, daysOfWeekFromEnabledDays, daysOfWeekNameFunction, daysOfWeekNameMap, decisionFunction, decodeHashedValues, decodeHashedValuesWithDecodeMap, decodeModelKeyTypePair, decodeRadix36Number, defaultFilterFromPOJOFunctionNoCopy, defaultForwardFunctionFactory, defaultLatLngPoint, defaultLatLngString, dencodeBitwiseSet, depthFirstExploreTreeTraversalFactoryFunction, diffLatLngBoundPoints, diffLatLngPoints, documentFileExtensionForMimeType, dollarAmountString, dollarAmountStringWithUnitFunction, e164PhoneNumberExtensionPair, e164PhoneNumberFromE164PhoneNumberExtensionPair, enabledDaysFromDaysOfWeek, encodeBitwiseSet, encodeModelKeyTypePair, encodeRadix36Number, errorMessageContainsString, errorMessageContainsStringFunction, escapeStringCharactersFunction, escapeStringForRegex, excludeValues, excludeValuesFromArray, excludeValuesFromSet, existsInIterable, expandArrayMapTuples, expandArrayValueTuples, expandFlattenTreeFunction, expandIndexSet, expandSlashPathPathMatcherPartToDecisionFunctions, expandTreeFunction, expandTrees, expirationDetails, expiringCachedGetter, exploreTreeFunction, exponentialPromiseRateLimiter, extendLatLngBound, fileExtensionForMimeType, filterAndMapFunction, filterEmptyArrayValues, filterEmptyPojoValues, filterFalsyAndEmptyValues, filterFromIterable, filterFromPOJO, filterFromPOJOFunction, filterKeyValueTupleFunction, filterKeyValueTuples, filterKeyValueTuplesFunction, filterKeyValueTuplesInputToFilter, filterKeysOnPOJOFunction, filterMaybeArrayFunction, filterMaybeArrayValues, filterNullAndUndefinedValues, filterOnlyUndefinedValues, filterTuplesOnPOJOFunction, filterUndefinedValues, filterUniqueByIndex, filterUniqueCaseInsensitiveStrings, filterUniqueFunction, filterUniqueTransform, filterUniqueValues, filterValuesByDistance, filterValuesByDistanceNoOrder, filterValuesToSet, filterValuesUsingSet, filteredPage, findAllCharacterOccurences, findAllCharacterOccurencesFunction, findBest, findBestIndexMatch, findBestIndexMatchFunction, findBestIndexSetPair, findBestSplitStringTreeChildMatch, findBestSplitStringTreeChildMatchPath, findBestSplitStringTreeMatch, findBestSplitStringTreeMatchPath, findFirstCharacterOccurence, findInIterable, findIndexOfFirstDuplicateValue, findItemsByIndex, findNext, findPOJOKeys, findPOJOKeysFunction, findStringsRegexString, findToIndexSet, findValuesFrom, firstAndLastCharacterOccurrence, firstAndLastValue, firstValue, firstValueFromIterable, fitToIndexRangeFunction, fixExtraQueryParameters, fixMultiSlashesInSlashPath, flattenArray, flattenArrayOrValueArray, flattenArrayToSet, flattenArrayUnique, flattenArrayUniqueCaseInsensitiveStrings, flattenObject, flattenTree, flattenTreeToArray, flattenTreeToArrayFunction, flattenWhitespace, forEachInIterable, forEachKeyValue, forEachKeyValueOnPOJOFunction, forEachWithArray, forwardFunction, fractionalHoursToMinutes, generateIfDoesNotExist, generateOAuthState, generatePkceCodeChallenge, generatePkceCodeVerifier, generatePkceMaterial, getArrayNextIndex, getBaseLog, getDayOffset, getDayTomorrow, getDayYesterday, getDaysOfWeekNames, getFunctionType, getNextDay, getNextPageNumber, getOverlappingRectangle, getPageNumber, getPreviousDay, getValueFromGetter, groupValues, handlerBindAccessor, handlerConfigurerFactory, handlerFactory, handlerMappedSetFunction, handlerMappedSetFunctionFactory, handlerSetFunction, hasDifferentStringsNoCase, hasDifferentValues, hasHttpPrefix, hasNonNullValue, hasPortNumber, hasSameTimezone, hasSameValues, hasValueFunction, hasValueOrNotEmpty, hasValueOrNotEmptyObject, hasWebsiteDomain, hasWebsiteTopLevelDomain, hashSetForIndexed, hashStringToNumber, hourToFractionalHour, hoursAndMinutesToString, hoursAndMinutesToTimeUnit, idBatchFactory, imageFileExtensionForMimeType, inMemoryAsyncKeyedValueCache, inMemoryAsyncValueCache, incrementingNumberFactory, indexDeltaGroup, indexDeltaGroupFunction, indexRange, indexRangeCheckFunction, indexRangeCheckReaderFunction, indexRangeForArray, indexRangeOverlapsIndexRange, indexRangeOverlapsIndexRangeFunction, indexRangeReaderPairFactory, indexRefMap, indexedValuesArrayAccessorFactory, insertIntoBooleanKeyArray, invertBooleanReturnFunction, invertDecision, invertFilter, invertMaybeBoolean, invertStringRecord, isAllowed, isClassLikeType, isCompleteUnitedStatesAddress, isConsideredUtcTimezoneString, isDate, isDefaultLatLngPoint, isDefaultLatLngPointValue, isDefaultReadableError, isDefinedAndNotFalse, isDollarAmountString, isE164PhoneNumber, isE164PhoneNumberWithExtension, isEmptyIterable, isEqualContext, isEqualDate, isEqualToValueDecisionFunction, isEvenNumber, isExpired, isFalseBooleanKeyArray, isFinalPage, isGetter, isHex, isHexWithByteLength, isHourOfDay, isISO8601DateString, isISO8601DayString, isISO8601DayStringStart, isInAllowedDaysOfWeekSet, isInNumberBoundFunction, isInSetDecisionFunction, isIndexNumberInIndexRange, isIndexNumberInIndexRangeFunction, isIndexRangeInIndexRange, isIndexRangeInIndexRangeFunction, isIterable, isKnownHttpWebsiteProtocol, isLatLngBound, isLatLngBoundWithinLatLngBound, isLatLngPoint, isLatLngPointWithinLatLngBound, isLatLngString, isLogicalDateStringCode, isMapIdentityFunction, isMaybeNot, isMaybeNotOrTrue, isMaybeSo, isMinuteOfDay, isModelKey, isMonthDaySlashDate, isNonClassFunction, isNotFalse, isNotNullOrEmptyString, isNumberDivisibleBy, isObjectWithConstructor, isOddNumber, isPast, isPdfPasswordProtected, isPromise, isPromiseLike, isSameLatLngBound, isSameLatLngPoint, isSameNonNullValue, isSameVector, isSelectedDecisionFunctionFactory, isSelectedIndexDecisionFunction, isServerError, isSlashPathFile, isSlashPathFolder, isSlashPathTypedFile, isStandardInternetAccessibleWebsiteUrl, isStringOrTrue, isThrottled, isTrueBooleanKeyArray, isUTCDateString, isUnderThreshold, isUniqueKeyedFunction, isUsStateCodeString, isValidLatLngPoint, isValidLatitude, isValidLongitude, isValidNumberBound, isValidPhoneExtensionNumber, isValidSlashPath, isWebsiteUrl, isWebsiteUrlWithPrefix, isWithinLatLngBoundFunction, isolateSlashPath, isolateSlashPathFunction, isolateWebsitePathFunction, itemCountForBatchIndex, iterableToArray, iterableToMap, iterableToSet, iterablesAreSetEquivalent, iterate, iterateFilteredPages, joinHostAndPort, joinStrings, joinStringsInstance, joinStringsWithCommas, 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, makeDefaultNonConcurrentTaskKeyFactory, makeGetter, makeHandler, makeHashDecodeMap, makeKeyPairs, makeModelConversionFieldValuesFunction, makeModelMap, makeModelMapFunctions, makeMultiModelKeyMap, makeTimer, makeValuesGroupMap, makeWithFactory, makeWithFactoryInput, mapArrayFunction, mapFunctionOutput, mapFunctionOutputPair, mapGetter, mapGetterFactory, mapIdentityFunction, mapIterable, mapKeysIntersectionObjectToArray, mapMaybeFunction, mapObjectKeysFunction, mapObjectKeysToLowercase, mapObjectMap, mapObjectMapFunction, mapObjectToTargetObject, mapPromiseOrValue, mapToObject, mapToTuples, mapValuesToSet, mappedUseAsyncFunction, mappedUseFunction, mapsHaveSameKeys, maybeMergeModelModifiers, maybeMergeModifiers, maybeModifierMapToFunction, maybeSet, memoizeAsyncKeyedValueCache, memoizeAsyncValueCache, mergeArrays, mergeArraysIntoArray, mergeAsyncKeyedValueCaches, mergeAsyncValueCaches, mergeFilterFunctions, mergeModifiers, mergeObjects, mergeObjectsFunction, mergeSlashPaths, messageFromError, millisecondsToMinutes, millisecondsToMinutesAndSeconds, millisecondsToTimeUnit, mimeTypeForApplicationFileExtension, mimeTypeForDocumentFileExtension, mimeTypeForFileExtension, mimeTypeForImageFileExtension, minAndMaxFunction, minAndMaxIndex, minAndMaxIndexFunction, minAndMaxIndexItemsFunction, minAndMaxNumber, minutesToFractionalHours, minutesToHoursAndMinutes, modelFieldConversions, modelFieldMapFunction, modelFieldMapFunctions, modelTypeDataPairFactory, modifier, modifierMapToFunction, modifyModelMapFunction, modifyModelMapFunctions, monthDaySlashDateToDateString, monthOfYearFromDate, monthOfYearFromDateMonth, monthOfYearFromUTCDate, multiKeyValueMapFactory, multiValueMapBuilder, nameToInitials, nameToInitialsFactory, neMostLatLngPoint, nearestDivisibleValues, noop, numberStringDencoder, numberStringDencoderDecodedNumberValueFunction, numberStringDencoderEncodedStringValueFunction, numberStringDencoderFunction, objectCopyFactory, objectDeltaArrayCompressor, objectFieldEqualityChecker, objectFlatMergeMatrix, objectHasKey, objectHasKeys, objectHasNoKeys, objectIsEmpty, objectKeyEqualityComparatorFunction, objectKeysEqualityComparatorFunction, objectMergeMatrix, objectToMap, overlapsLatLngBoundFunction, overrideInObject, overrideInObjectFunctionFactory, padStartFunction, pairGroupValues, parseAuthorizationRedirect, parseISO8601DayStringToUTCDate, partialServerError, MAP_IDENTITY as 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, readPortNumber, readUniqueModelKey, readWebsiteProtocol, readableError, readableStreamToBase64, readableStreamToBuffer, readableStreamToStringFunction, recommendBucketsForGroup, recommendSpecPath, rectangleOverlapsRectangle, reduceBooleansFn, reduceBooleansWithAnd, reduceBooleansWithAndFn, reduceBooleansWithOr, reduceBooleansWithOrFn, reduceNumbers, reduceNumbersFn, reduceNumbersWithAdd, reduceNumbersWithAddFn, reduceNumbersWithMax, reduceNumbersWithMaxFn, reduceNumbersWithMin, reduceNumbersWithMinFn, removeByKeyFromBooleanKeyArray, removeCharactersAfterFirstCharacterOccurence, removeCharactersAfterFirstCharacterOccurenceFunction, removeExtensionFromPhoneNumber, removeFirstMatchingSuffix, removeFromBooleanKeyArray, removeFromSet, removeFromSetCopy, removeHttpFromUrl, removeModelsWithKey, removeModelsWithSameKey, removeModifiers, removeSuffix, removeTrailingFileTypeSeparators, removeTrailingSlashes, removeValuesAtIndexesFromArrayCopy, removeWebProtocolPrefix, repeatString, replaceCharacterAtIndexIf, replaceCharacterAtIndexWith, replaceInvalidFilePathTypeSeparatorsInSlashPath, replaceInvalidFilePathTypeSeparatorsInSlashPathFunction, replaceLastCharacterIf, replaceLastCharacterIfIsFunction, replaceMultipleFilePathsInSlashPath, replaceStringsFunction, requireModelKey, resetPeriodPromiseRateLimiter, restoreOrder, restoreOrderWithValues, reverseCompareFn, roundNumberToStepFunction, roundNumberUpToStep, roundToPrecision, roundToPrecisionFunction, roundingFunction, runAsyncTaskForValue, runAsyncTasksForValues, runNamedAsyncTasks, runNamedAsyncTasksFunction, safeCompareEquality, safeEqualityComparatorFunction, safeFindBestIndexMatch, screamingSnakeToCamelCase, searchStringFilterFunction, secondsToMinutesAndSeconds, selectiveFieldEncryptor, separateValues, separateValuesToSets, sequentialIncrementingNumberStringModelIdFactory, serverError, setContainsAllValues, setContainsAnyValue, setContainsNoneOfValue, setDeltaChangeKeys, setDeltaFunction, setHasValueFunction, setIncludes, setIncludesFunction, setKeysOnMap, setWebProtocolPrefix, setsAreEquivalent, simpleSortValuesFunctionWithSortRef, simplifyWhitespace, slashPathDetails, slashPathDirectoryTree, slashPathFactory, slashPathFolder, slashPathFolderFactory, slashPathInvalidError, slashPathName, slashPathParts, slashPathPathMatcher, slashPathPathMatcherConfig, slashPathStartTypeFactory, slashPathSubPathMatcher, slashPathType, slashPathValidationFactory, sliceIndexRangeFunction, sliceStringFunction, sortAscendingIndexNumberRefFunction, sortByIndexAscendingCompareFunction, sortByIndexRangeAscendingCompareFunction, sortByLabelFunction, sortByNumberFunction, sortByStringFunction, sortCompareNumberFunction, sortNumbersAscendingFunction, sortValues, sortValuesFunctionOrMapIdentityWithSortRef, sortValuesFunctionWithSortRef, spaceSeparatedCssClasses, splitCommaSeparatedString, splitCommaSeparatedStringToSet, splitFront, splitJoinNameString, splitJoinRemainder, splitStringAtFirstCharacterOccurence, splitStringAtFirstCharacterOccurenceFunction, splitStringAtIndex, splitStringTreeFactory, startOfDayForSystemDateInUTC, startOfDayForUTCDateInUTC, stepsFromIndex, stepsFromIndexFunction, stringCharactersToIndexRecord, stringContains, stringFactoryFromFactory, stringFromDateFactory, stringFromTimeFactory, stringSplitJoinInstance, stringToBoolean, stringToLowercaseFunction, stringToUppercaseFunction, stringTrimFunction, stripObject, stripObjectFunction, sumOfIntegersBetween, swMostLatLngPoint, symmetricDifferenceArray, symmetricDifferenceArrayBetweenSets, symmetricDifferenceWithModels, takeFront, takeLast, takeValuesFromIterable, telUrlString, telUrlStringForE164PhoneNumberPair, terminatingFactoryFromArray, throwKeyIsRequired, timeDurationToHoursAndMinutes, timeDurationToMilliseconds, timePeriodCounter, timeUnitToMilliseconds, toAbsoluteSlashPathStartType, toCaseInsensitiveStringArray, toMinuteOfDay, toModelFieldConversions, toModelMapFunctions, toReadableError, toRelativeSlashPathStartType, toggleInSet, toggleInSetCopy, toggleTimerRunning, transformNumberFunction, transformNumberFunctionConfig, transformStringFunction, transformStringFunctionConfig, transformStrings, trimArray, trimSlash, trueOrFalseString, tryConvertToE164PhoneNumber, tryWithPromiseFactoriesFunction, typedServiceRegistry, unique, uniqueCaseInsensitiveStrings, uniqueCaseInsensitiveStringsSet, uniqueKeys, uniqueModels, unitedStatesAddressString, unixDateTimeSecondsNumberForNow, unixDateTimeSecondsNumberFromDate, unixDateTimeSecondsNumberFromDateOrTimeNumber, unixDateTimeSecondsNumberToDate, unixMillisecondsNumberToDate, updateMaybeValue, urlWithoutParameters, useAsync, useCallback, useContextFunction, useIterableOrValue, useModelOrKey, usePromise, useValue, validLatLngPoint, validLatLngPointFunction, valueAtIndex, valuesAreBothNullishOrEquivalent, valuesFromPOJO, valuesFromPOJOFunction, vectorMinimumSizeResizeFunction, vectorsAreEqual, waitForMs, websiteDomainAndPathPair, websiteDomainAndPathPairFromWebsiteUrl, websitePathAndQueryPair, websitePathFromWebsiteDomainAndPath, websitePathFromWebsiteUrl, websiteUrlDetails, websiteUrlFromPaths, wrapIndexRangeFunction, wrapLatLngPoint, wrapLngValue, wrapMapFunctionOutput, wrapNumberFunction, wrapTuples, wrapUseAsyncFunction, wrapUseFunction };
|
|
26502
|
+
export { ALL_DOUBLE_SLASHES_REGEX, ALL_SLASHES_REGEX, ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX, ALL_TIME_UNITS, APPLICATION_FILE_EXTENSION_TO_MIME_TYPES_RECORD, APPLICATION_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, ASSERTION_ERROR_CODE, ASSERTION_HANDLER, AUTH_ADMIN_ROLE, AUTH_ONBOARDED_ROLE, AUTH_TOS_SIGNED_ROLE, AUTH_USER_ROLE, AbstractUniqueModel, Assert, AssertMax, AssertMin, AssertionError, AssertionIssueHandler, BooleanStringKeyArrayUtility, CANONICAL_KINDS, CATCH_ALL_HANDLE_RESULT_KEY, COMMA_JOINER, COMMA_STRING_SPLIT_JOIN, CSV_MIME_TYPE, CUT_VALUE_TO_ZERO_PRECISION, DASH_CHARACTER_PREFIX_INSTANCE, DATE_NOW_VALUE, DAYS_IN_WEEK, DAYS_IN_YEAR, DEFAULT_AUTH_ROLE_CLAIMS_CLAIM_VALUE, DEFAULT_AUTH_ROLE_CLAIMS_EMPTY_VALUE, DEFAULT_CUT_STRING_END_TEXT, DEFAULT_ENCRYPTED_FIELD_PREFIX, DEFAULT_LAT_LNG_STRING_VALUE, DEFAULT_NAME_TO_INITIALS_MAX_INITIALS, DEFAULT_NAME_TO_INITIALS_MIN_INITIALS, DEFAULT_NUMBER_STRING_DENCODER_64_NEGATIVE_PREFIX, DEFAULT_OIDC_RELYING_PARTY_SCOPE, 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_SLASH_PATH_PATH_MATCHER_NON_MATCHING_FILL_VALUE, DEFAULT_UNKNOWN_MODEL_TYPE_STRING, DOCUMENT_FILE_EXTENSION_TO_MIME_TYPES_RECORD, DOCUMENT_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, DOCX_MIME_TYPE, 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, ExploreTreeVisitNodeDecision, FINAL_PAGE, FIRST_PAGE, FRACTIONAL_HOURS_PRECISION_FUNCTION, FlattenTreeAddNodeDecision, FullStorageObject, GIF_MIME_TYPE, HAS_PORT_NUMBER_REGEX, HAS_WEBSITE_DOMAIN_NAME_REGEX, HEIF_MIME_TYPE, HEX_PATTERN, HOURS_IN_DAY, HOUR_OF_DAY_MAXMIMUM, HOUR_OF_DAY_MINIUMUM, HTML_MIME_TYPE, HTTP_OR_HTTPS_REGEX, HTTP_UNAUTHORIZED_STATUS_CODE, HashSet, IMAGE_FILE_EXTENSION_TO_MIME_TYPES_RECORD, IMAGE_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, IMPERSONATION_URL_QUERY_PARAM, ISO8601_DAY_STRING_REGEX, ISO8601_DAY_STRING_START_REGEX, ISO_8601_DATE_STRING_REGEX, JPEG_MIME_TYPE, JPEG_MIME_TYPES, JPG_MIME_TYPE, JSON_MIME_TYPE, 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, MARKDOWN_MIME_TYPE, MAX_BITWISE_SET_SIZE, MAX_LATITUDE_VALUE, MAX_LONGITUDE_VALUE, MINUTES_IN_DAY, MINUTES_IN_HOUR, MINUTE_OF_DAY_MAXMIMUM, MINUTE_OF_DAY_MINIUMUM, MIN_LATITUDE_VALUE, MIN_LONGITUDE_VALUE, MONTH_DAY_SLASH_DATE_STRING_REGEX, MS_IN_DAY, MS_IN_HOUR, MS_IN_MINUTE, MS_IN_SECOND, MS_IN_WEEK, MemoryStorageInstance, ModelRelationUtility, NOOP_MODIFIER, NUMBER_STRING_DENCODER_64, NUMBER_STRING_DENCODER_64_DIGITS, OAUTH_OOB_REDIRECT_URI, OidcRelyingPartyError, PDF_ENCRYPT_MARKER, PDF_EOF_MARKER, PDF_HEADER, PDF_MIME_TYPE, PHONE_EXTENSION_NUMBER_REGEX, PJPEG_MIME_TYPE, PNG_MIME_TYPE, PRIMATIVE_KEY_DENCODER_VALUE, PropertyDescriptorUtility, RAW_MIME_TYPE, REGEX_SPECIAL_CHARACTERS, REGEX_SPECIAL_CHARACTERS_SET, RelationChange, SECONDS_IN_DAY, SECONDS_IN_HOUR, 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, SPACE_JOINER, SPACE_STRING_SPLIT_JOIN, SPLIT_STRING_TREE_NODE_ROOT_VALUE, SVG_MIME_TYPE, ServerErrorResponse, SetDeltaChange, SimpleStorageObject, SlashPathPathMatcherPartCode, StorageObject, StorageObjectUtility, StoredDataError, SyncState, TIFF_MIME_TYPE, TIME_UNIT_LABEL_MAP, TIME_UNIT_SHORT_LABEL_MAP, TOTAL_LATITUDE_RANGE, TOTAL_LONGITUDE_RANGE, TOTAL_SPAN_OF_LONGITUDE, TRAILING_FILE_TYPE_SEPARATORS_REGEX, TRAILING_SLASHES_REGEX, TXT_MIME_TYPE, TimeAM, TimerCancelledError, TypedServiceRegistryInstance, UNLOADED_PAGE, UNSET_INDEX_NUMBER, US_STATE_CODE_STRING_REGEX, UTC_DATE_STRING_REGEX, UTC_TIMEZONE_STRING, UTF_8_START_CHARACTER, UTF_PRIVATE_USAGE_AREA_START, UnauthorizedServerErrorResponse, WEBP_MIME_TYPE, WEBSITE_TLD_DETECTION_REGEX, WEB_PROTOCOL_PREFIX_REGEX, XLSX_MIME_TYPE, XML_MIME_TYPE, YAML_MIME_TYPE, ZIP_CODE_STRING_REGEX, ZIP_FILE_MIME_TYPE, addHttpToUrl, addLatLngPoints, addMilliseconds, addModifiers, addPlusPrefixToNumber, addPrefix, addPrefixFunction, addSuffix, addSuffixFunction, addToSet, addToSetCopy, addToSplitStringTree, addTrailingSlash, allFalsyOrEmptyKeys, allIndexesInIndexRange, allKeyValueTuples, allMaybeSoKeys, allNonUndefinedKeys, allObjectsAreEqual, allValuesAreMaybeNot, allValuesAreNotMaybe, allowValueOnceFilter, applicationFileExtensionForMimeType, applyBestFit, applySplitStringTreeWithMultipleValues, applyToMultipleFields, approximateTimerEndDate, areEqualContext, areEqualPOJOValues, areEqualPOJOValuesUsingPojoFilter, arrayContainsDuplicateValue, arrayContentsDiffer, arrayDecision, arrayDecisionFunction, arrayFactory, arrayInputFactory, arrayToLowercase, arrayToMap, arrayToObject, arrayToUppercase, asArray, asDecisionFunction, asGetter, asIndexRangeCheckFunctionConfig, asIterable, asMinuteOfDay, asNonEmptyArray, asNumber, asObjectCopyFactory, asPromise, asSet, assignValuesToPOJO, assignValuesToPOJOFunction, authClaims, authRoleClaimsService, authRolesSetHasRoles, baseWebsiteUrl, batch, batchCalc, bitwiseObjectDencoder, bitwiseObjectEncoder, bitwiseObjectdecoder, bitwiseSetDecoder, bitwiseSetDencoder, booleanFactory, booleanKeyArrayUtility, boundNumber, boundNumberFunction, boundToRectangle, breadthFirstExploreTreeTraversalFactoryFunction, bufferHasValidPdfMarkings, build, buildAuthorizationUrl, buildCanonicalFilename, buildOidcDiscoveryCandidates, cachedGetter, calculateExpirationDate, camelOrPascalToScreamingSnake, capLatValue, capitalizeFirstLetter, caseInsensitiveFilterByIndexOfDecisionFactory, caseInsensitiveString, catchAllHandlerKey, chainMapFunction, chainMapSameFunctions, characterPrefixSuffixInstance, checkAnyHaveExpired, checkAtleastOneNotExpired, classifySpecFile, coerceToEmailParticipants, combineMaps, compareEqualityWithValueFromItemsFunction, compareEqualityWithValueFromItemsFunctionFactory, compareFnOrder, compareStrings, compareStringsNumeric, compareWithMappedValuesFunction, computeNextFractionalHour, computeNextFreeIndexFunction, computeNextFreeIndexOnSortedValuesFunction, concatArrays, concatArraysUnique, containsAllStringsAnyCase, containsAllValues, containsAnyStringAnyCase, containsAnyValue, containsAnyValueFromSet, containsNoValueFromSet, containsNoneOfValue, containsStringAnyCase, convertEmailParticipantStringToParticipant, convertMaybeToArray, convertMaybeToNonEmptyArray, convertParticipantToEmailParticipantString, convertTimeDuration, convertToArray, copyArray, copyField, copyLatLngBound, copyLatLngPoint, copyObject, copySetAndDo, copyValueDeep, copyValueDeepFunction, copyValueWithoutNullAndUndefinedValues, copyValueWithoutUndefinedValues, countAllInNestedArray, countPOJOKeys, countPOJOKeysFunction, cronExpressionRepeatingEveryNMinutes, cssClassesSet, cssTokenVar, cssVariableVar, cutString, cutStringFunction, cutToPrecision, cutValueToInteger, cutValueToPrecision, cutValueToPrecisionFunction, dateFromDateOrTimeMillisecondsNumber, dateFromDateOrTimeSecondsNumber, dateFromLogicalDate, dateFromMinuteOfDay, dateOrMillisecondsToDate, dateToHoursAndMinutes, dateToMinuteOfDay, dayOfWeek, daysOfWeekArray, daysOfWeekFromEnabledDays, daysOfWeekNameFunction, daysOfWeekNameMap, decisionFunction, decodeHashedValues, decodeHashedValuesWithDecodeMap, decodeModelKeyTypePair, decodeRadix36Number, defaultFilterFromPOJOFunctionNoCopy, defaultForwardFunctionFactory, defaultLatLngPoint, defaultLatLngString, dencodeBitwiseSet, depthFirstExploreTreeTraversalFactoryFunction, diffLatLngBoundPoints, diffLatLngPoints, documentFileExtensionForMimeType, dollarAmountString, dollarAmountStringWithUnitFunction, e164PhoneNumberExtensionPair, e164PhoneNumberFromE164PhoneNumberExtensionPair, enabledDaysFromDaysOfWeek, encodeBitwiseSet, encodeModelKeyTypePair, encodeRadix36Number, errorMessageContainsString, errorMessageContainsStringFunction, escapeStringCharactersFunction, escapeStringForRegex, excludeValues, excludeValuesFromArray, excludeValuesFromSet, existsInIterable, expandArrayMapTuples, expandArrayValueTuples, expandFlattenTreeFunction, expandIndexSet, expandSlashPathPathMatcherPartToDecisionFunctions, expandTreeFunction, expandTrees, expirationDetails, expiringCachedGetter, exploreTreeFunction, exponentialPromiseRateLimiter, extendLatLngBound, fileExtensionForMimeType, filterAndMapFunction, filterEmptyArrayValues, filterEmptyPojoValues, filterFalsyAndEmptyValues, filterFromIterable, filterFromPOJO, filterFromPOJOFunction, filterKeyValueTupleFunction, filterKeyValueTuples, filterKeyValueTuplesFunction, filterKeyValueTuplesInputToFilter, filterKeysOnPOJOFunction, filterMaybeArrayFunction, filterMaybeArrayValues, filterNullAndUndefinedValues, filterOnlyUndefinedValues, filterTuplesOnPOJOFunction, filterUndefinedValues, filterUniqueByIndex, filterUniqueCaseInsensitiveStrings, filterUniqueFunction, filterUniqueTransform, filterUniqueValues, filterValuesByDistance, filterValuesByDistanceNoOrder, filterValuesToSet, filterValuesUsingSet, filteredPage, findAllCharacterOccurences, findAllCharacterOccurencesFunction, findBest, findBestIndexMatch, findBestIndexMatchFunction, findBestIndexSetPair, findBestSplitStringTreeChildMatch, findBestSplitStringTreeChildMatchPath, findBestSplitStringTreeMatch, findBestSplitStringTreeMatchPath, findFirstCharacterOccurence, findInIterable, findIndexOfFirstDuplicateValue, findItemsByIndex, findNext, findPOJOKeys, findPOJOKeysFunction, findStringsRegexString, findToIndexSet, findValuesFrom, firstAndLastCharacterOccurrence, firstAndLastValue, firstValue, firstValueFromIterable, fitToIndexRangeFunction, fixExtraQueryParameters, fixMultiSlashesInSlashPath, flattenArray, flattenArrayOrValueArray, flattenArrayToSet, flattenArrayUnique, flattenArrayUniqueCaseInsensitiveStrings, flattenObject, flattenTree, flattenTreeToArray, flattenTreeToArrayFunction, flattenWhitespace, forEachInIterable, forEachKeyValue, forEachKeyValueOnPOJOFunction, forEachWithArray, forwardFunction, fractionalHoursToMinutes, generateIfDoesNotExist, generateOAuthState, generatePkceCodeChallenge, generatePkceCodeVerifier, generatePkceMaterial, getArrayNextIndex, getBaseLog, getDayOffset, getDayTomorrow, getDayYesterday, getDaysOfWeekNames, getFunctionType, getNextDay, getNextPageNumber, getOverlappingRectangle, getPageNumber, getPreviousDay, getValueFromGetter, groupValues, handlerBindAccessor, handlerConfigurerFactory, handlerFactory, handlerMappedSetFunction, handlerMappedSetFunctionFactory, handlerSetFunction, hasDifferentStringsNoCase, hasDifferentValues, hasHttpPrefix, hasNonNullValue, hasPortNumber, hasSameTimezone, hasSameValues, hasValueFunction, hasValueOrNotEmpty, hasValueOrNotEmptyObject, hasWebsiteDomain, hasWebsiteTopLevelDomain, hashSetForIndexed, hashStringToNumber, hourToFractionalHour, hoursAndMinutesToString, hoursAndMinutesToTimeUnit, idBatchFactory, imageFileExtensionForMimeType, inMemoryAsyncKeyedValueCache, inMemoryAsyncValueCache, incrementingNumberFactory, indexDeltaGroup, indexDeltaGroupFunction, indexRange, indexRangeCheckFunction, indexRangeCheckReaderFunction, indexRangeForArray, indexRangeOverlapsIndexRange, indexRangeOverlapsIndexRangeFunction, indexRangeReaderPairFactory, indexRefMap, indexedValuesArrayAccessorFactory, insertIntoBooleanKeyArray, invertBooleanReturnFunction, invertDecision, invertFilter, invertMaybeBoolean, invertStringRecord, isAllowed, isClassLikeType, isCompleteUnitedStatesAddress, isConsideredUtcTimezoneString, isDate, isDefaultLatLngPoint, isDefaultLatLngPointValue, isDefaultReadableError, isDefinedAndNotFalse, isDollarAmountString, isE164PhoneNumber, isE164PhoneNumberWithExtension, isEmptyIterable, isEqualContext, isEqualDate, isEqualToValueDecisionFunction, isEvenNumber, isExpired, isFalseBooleanKeyArray, isFinalPage, isGetter, isHex, isHexWithByteLength, isHourOfDay, isISO8601DateString, isISO8601DayString, isISO8601DayStringStart, isInAllowedDaysOfWeekSet, isInNumberBoundFunction, isInSetDecisionFunction, isIndexNumberInIndexRange, isIndexNumberInIndexRangeFunction, isIndexRangeInIndexRange, isIndexRangeInIndexRangeFunction, isIterable, isKnownHttpWebsiteProtocol, isLatLngBound, isLatLngBoundWithinLatLngBound, isLatLngPoint, isLatLngPointWithinLatLngBound, isLatLngString, isLogicalDateStringCode, isMapIdentityFunction, isMaybeNot, isMaybeNotOrTrue, isMaybeSo, isMinuteOfDay, isModelKey, isMonthDaySlashDate, isNonClassFunction, isNotFalse, isNotNullOrEmptyString, isNumberDivisibleBy, isObjectWithConstructor, isOddNumber, isPast, isPdfPasswordProtected, isPlainObject, isPromise, isPromiseLike, isSameLatLngBound, isSameLatLngPoint, isSameNonNullValue, isSameVector, isSelectedDecisionFunctionFactory, isSelectedIndexDecisionFunction, isServerError, isSlashPathFile, isSlashPathFolder, isSlashPathTypedFile, isStandardInternetAccessibleWebsiteUrl, isStringOrTrue, isThrottled, isTrueBooleanKeyArray, isUTCDateString, isUnderThreshold, isUniqueKeyedFunction, isUsStateCodeString, isValidLatLngPoint, isValidLatitude, isValidLongitude, isValidNumberBound, isValidPhoneExtensionNumber, isValidSlashPath, isWebsiteUrl, isWebsiteUrlWithPrefix, isWithinLatLngBoundFunction, isolateSlashPath, isolateSlashPathFunction, isolateWebsitePathFunction, itemCountForBatchIndex, iterableToArray, iterableToMap, iterableToSet, iterablesAreSetEquivalent, iterate, iterateFilteredPages, joinHostAndPort, joinStrings, joinStringsInstance, joinStringsWithCommas, 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, makeDefaultNonConcurrentTaskKeyFactory, makeGetter, makeHandler, makeHashDecodeMap, makeKeyPairs, makeModelConversionFieldValuesFunction, makeModelMap, makeModelMapFunctions, makeMultiModelKeyMap, makeTimer, makeValuesGroupMap, makeWithFactory, makeWithFactoryInput, mapArrayFunction, mapFunctionOutput, mapFunctionOutputPair, mapGetter, mapGetterFactory, mapIdentityFunction, mapIterable, mapKeysIntersectionObjectToArray, mapMaybeFunction, mapObjectKeysFunction, mapObjectKeysToLowercase, mapObjectMap, mapObjectMapFunction, mapObjectToTargetObject, mapPromiseOrValue, mapToObject, mapToTuples, mapValuesToSet, mappedUseAsyncFunction, mappedUseFunction, mapsHaveSameKeys, maybeMergeModelModifiers, maybeMergeModifiers, maybeModifierMapToFunction, maybeSet, memoizeAsyncKeyedValueCache, memoizeAsyncValueCache, mergeArrays, mergeArraysIntoArray, mergeAsyncKeyedValueCaches, mergeAsyncValueCaches, mergeFilterFunctions, mergeModifiers, mergeObjects, mergeObjectsFunction, mergeSlashPaths, messageFromError, millisecondsToMinutes, millisecondsToMinutesAndSeconds, millisecondsToTimeUnit, mimeTypeForApplicationFileExtension, mimeTypeForDocumentFileExtension, mimeTypeForFileExtension, mimeTypeForImageFileExtension, minAndMaxFunction, minAndMaxIndex, minAndMaxIndexFunction, minAndMaxIndexItemsFunction, minAndMaxNumber, minutesToFractionalHours, minutesToHoursAndMinutes, modelFieldConversions, modelFieldMapFunction, modelFieldMapFunctions, modelTypeDataPairFactory, modifier, modifierMapToFunction, modifyModelMapFunction, modifyModelMapFunctions, monthDaySlashDateToDateString, monthOfYearFromDate, monthOfYearFromDateMonth, monthOfYearFromUTCDate, multiKeyValueMapFactory, multiValueMapBuilder, nameToInitials, nameToInitialsFactory, neMostLatLngPoint, nearestDivisibleValues, noop, numberStringDencoder, numberStringDencoderDecodedNumberValueFunction, numberStringDencoderEncodedStringValueFunction, numberStringDencoderFunction, objectCopyFactory, objectDeltaArrayCompressor, objectFieldEqualityChecker, objectFlatMergeMatrix, objectHasKey, objectHasKeys, objectHasNoKeys, objectIsEmpty, objectKeyEqualityComparatorFunction, objectKeysEqualityComparatorFunction, objectMergeMatrix, objectToMap, overlapsLatLngBoundFunction, overrideInObject, overrideInObjectFunctionFactory, padStartFunction, pairGroupValues, parseAuthorizationRedirect, parseISO8601DayStringToUTCDate, partialServerError, MAP_IDENTITY as 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, readPortNumber, readUniqueModelKey, readWebsiteProtocol, readableError, readableStreamToBase64, readableStreamToBuffer, readableStreamToStringFunction, recommendBucketsForGroup, recommendSpecPath, rectangleOverlapsRectangle, reduceBooleansFn, reduceBooleansWithAnd, reduceBooleansWithAndFn, reduceBooleansWithOr, reduceBooleansWithOrFn, reduceNumbers, reduceNumbersFn, reduceNumbersWithAdd, reduceNumbersWithAddFn, reduceNumbersWithMax, reduceNumbersWithMaxFn, reduceNumbersWithMin, reduceNumbersWithMinFn, removeByKeyFromBooleanKeyArray, removeCharactersAfterFirstCharacterOccurence, removeCharactersAfterFirstCharacterOccurenceFunction, removeExtensionFromPhoneNumber, removeFirstMatchingSuffix, removeFromBooleanKeyArray, removeFromSet, removeFromSetCopy, removeHttpFromUrl, removeModelsWithKey, removeModelsWithSameKey, removeModifiers, removeSuffix, removeTrailingFileTypeSeparators, removeTrailingSlashes, removeValuesAtIndexesFromArrayCopy, removeWebProtocolPrefix, repeatString, replaceCharacterAtIndexIf, replaceCharacterAtIndexWith, replaceInvalidFilePathTypeSeparatorsInSlashPath, replaceInvalidFilePathTypeSeparatorsInSlashPathFunction, replaceLastCharacterIf, replaceLastCharacterIfIsFunction, replaceMultipleFilePathsInSlashPath, replaceStringsFunction, requireModelKey, resetPeriodPromiseRateLimiter, restoreOrder, restoreOrderWithValues, reverseCompareFn, roundNumberToStepFunction, roundNumberUpToStep, roundToPrecision, roundToPrecisionFunction, roundingFunction, runAsyncTaskForValue, runAsyncTasksForValues, runNamedAsyncTasks, runNamedAsyncTasksFunction, safeCompareEquality, safeEqualityComparatorFunction, safeFindBestIndexMatch, screamingSnakeToCamelCase, searchStringFilterFunction, secondsToMinutesAndSeconds, selectiveFieldEncryptor, separateValues, separateValuesToSets, sequentialIncrementingNumberStringModelIdFactory, serverError, setContainsAllValues, setContainsAnyValue, setContainsNoneOfValue, setDeltaChangeKeys, setDeltaFunction, setHasValueFunction, setIncludes, setIncludesFunction, setKeysOnMap, setWebProtocolPrefix, setsAreEquivalent, simpleSortValuesFunctionWithSortRef, simplifyWhitespace, slashPathDetails, slashPathDirectoryTree, slashPathFactory, slashPathFolder, slashPathFolderFactory, slashPathInvalidError, slashPathName, slashPathParts, slashPathPathMatcher, slashPathPathMatcherConfig, slashPathStartTypeFactory, slashPathSubPathMatcher, slashPathType, slashPathValidationFactory, sliceIndexRangeFunction, sliceStringFunction, sortAscendingIndexNumberRefFunction, sortByIndexAscendingCompareFunction, sortByIndexRangeAscendingCompareFunction, sortByLabelFunction, sortByNumberFunction, sortByStringFunction, sortCompareNumberFunction, sortNumbersAscendingFunction, sortValues, sortValuesFunctionOrMapIdentityWithSortRef, sortValuesFunctionWithSortRef, spaceSeparatedCssClasses, splitCommaSeparatedString, splitCommaSeparatedStringToSet, splitFront, splitJoinNameString, splitJoinRemainder, splitStringAtFirstCharacterOccurence, splitStringAtFirstCharacterOccurenceFunction, splitStringAtIndex, splitStringTreeFactory, startOfDayForSystemDateInUTC, startOfDayForUTCDateInUTC, stepsFromIndex, stepsFromIndexFunction, stringCharactersToIndexRecord, stringContains, stringFactoryFromFactory, stringFromDateFactory, stringFromTimeFactory, stringSplitJoinInstance, stringToBoolean, stringToLowercaseFunction, stringToUppercaseFunction, stringTrimFunction, stripObject, stripObjectFunction, sumOfIntegersBetween, swMostLatLngPoint, symmetricDifferenceArray, symmetricDifferenceArrayBetweenSets, symmetricDifferenceWithModels, takeFront, takeLast, takeValuesFromIterable, telUrlString, telUrlStringForE164PhoneNumberPair, terminatingFactoryFromArray, throwKeyIsRequired, timeDurationToHoursAndMinutes, timeDurationToMilliseconds, timePeriodCounter, timeUnitToMilliseconds, toAbsoluteSlashPathStartType, toCaseInsensitiveStringArray, toMinuteOfDay, toModelFieldConversions, toModelMapFunctions, toReadableError, toRelativeSlashPathStartType, toggleInSet, toggleInSetCopy, toggleTimerRunning, transformNumberFunction, transformNumberFunctionConfig, transformStringFunction, transformStringFunctionConfig, transformStrings, trimArray, trimSlash, trueOrFalseString, tryConvertToE164PhoneNumber, tryWithPromiseFactoriesFunction, typedServiceRegistry, unique, uniqueCaseInsensitiveStrings, uniqueCaseInsensitiveStringsSet, uniqueKeys, uniqueModels, unitedStatesAddressString, unixDateTimeSecondsNumberForNow, unixDateTimeSecondsNumberFromDate, unixDateTimeSecondsNumberFromDateOrTimeNumber, unixDateTimeSecondsNumberToDate, unixMillisecondsNumberToDate, updateMaybeValue, urlWithoutParameters, useAsync, useCallback, useContextFunction, useIterableOrValue, useModelOrKey, usePromise, useValue, validLatLngPoint, validLatLngPointFunction, valueAtIndex, valuesAreBothNullishOrEquivalent, valuesFromPOJO, valuesFromPOJOFunction, vectorMinimumSizeResizeFunction, vectorsAreEqual, waitForMs, websiteDomainAndPathPair, websiteDomainAndPathPairFromWebsiteUrl, websitePathAndQueryPair, websitePathFromWebsiteDomainAndPath, websitePathFromWebsiteUrl, websiteUrlDetails, websiteUrlFromPaths, wrapIndexRangeFunction, wrapLatLngPoint, wrapLngValue, wrapMapFunctionOutput, wrapNumberFunction, wrapTuples, wrapUseAsyncFunction, wrapUseFunction };
|