@dereekb/util 12.6.21 → 13.0.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/LICENSE +1 -1
- package/fetch/LICENSE +1 -1
- package/fetch/index.cjs.js +42 -2529
- package/fetch/index.esm.js +44 -2530
- package/fetch/package.json +21 -16
- package/fetch/src/lib/fetch.page.d.ts +0 -4
- package/fetch/src/lib/fetch.url.d.ts +0 -8
- package/fetch/src/lib/provider.d.ts +0 -4
- package/index.cjs.js +36 -2354
- package/index.esm.js +39 -2344
- package/package.json +18 -7
- package/src/lib/array/array.boolean.d.ts +0 -11
- package/src/lib/array/array.value.d.ts +0 -18
- package/src/lib/boolean.d.ts +1 -1
- package/src/lib/date/date.d.ts +0 -8
- package/src/lib/date/date.unix.d.ts +6 -30
- package/src/lib/date/expires.d.ts +4 -4
- package/src/lib/date/hour.d.ts +1 -1
- package/src/lib/date/time.d.ts +0 -4
- package/src/lib/key.d.ts +4 -0
- package/src/lib/object/object.map.d.ts +0 -9
- package/src/lib/page/index.d.ts +0 -1
- package/src/lib/promise/promise.d.ts +2 -3
- package/src/lib/set/set.hashset.d.ts +4 -4
- package/src/lib/storage/storage.d.ts +2 -2
- package/src/lib/string/mimetype.d.ts +0 -8
- package/src/lib/string/replace.d.ts +11 -1
- package/src/lib/tree/tree.flatten.d.ts +0 -10
- package/src/lib/value/indexed.d.ts +1 -1
- package/src/lib/value/maybe.type.d.ts +3 -3
- package/src/lib/value/point.d.ts +2 -2
- package/test/LICENSE +21 -0
- package/test/index.cjs.js +707 -0
- package/test/index.esm.js +664 -0
- package/test/package.json +20 -6
- package/test/src/lib/index.d.ts +1 -3
- package/test/src/lib/jest/index.d.ts +4 -0
- package/test/src/lib/jest/jest.d.ts +55 -0
- package/test/src/lib/jest/jest.fail.d.ts +72 -0
- package/test/src/lib/jest/jest.function.d.ts +41 -0
- package/test/src/lib/jest/jest.wrap.d.ts +24 -0
- package/test/src/lib/shared/index.d.ts +4 -0
- package/test/src/lib/shared/shared.d.ts +154 -0
- package/test/src/lib/shared/shared.fail.d.ts +83 -0
- package/test/src/lib/shared/shared.function.d.ts +25 -0
- package/test/src/lib/{jest.wrap.d.ts → shared/shared.wrap.d.ts} +9 -9
- package/index.esm.d.ts +0 -1
- package/src/lib/page/page.calculator.d.ts +0 -29
- package/test/CHANGELOG.md +0 -1956
- package/test/src/index.js +0 -5
- package/test/src/index.js.map +0 -1
- package/test/src/lib/index.js +0 -8
- package/test/src/lib/index.js.map +0 -1
- package/test/src/lib/jest.d.ts +0 -100
- package/test/src/lib/jest.fail.d.ts +0 -104
- package/test/src/lib/jest.fail.js +0 -224
- package/test/src/lib/jest.fail.js.map +0 -1
- package/test/src/lib/jest.function.d.ts +0 -25
- package/test/src/lib/jest.function.js +0 -21
- package/test/src/lib/jest.function.js.map +0 -1
- package/test/src/lib/jest.js +0 -113
- package/test/src/lib/jest.js.map +0 -1
- package/test/src/lib/jest.wrap.js +0 -70
- package/test/src/lib/jest.wrap.js.map +0 -1
- /package/fetch/{index.cjs.d.ts → index.d.ts} +0 -0
- /package/{fetch/index.esm.d.ts → index.d.ts} +0 -0
- /package/{index.cjs.d.ts → test/index.d.ts} +0 -0
package/index.esm.js
CHANGED
|
@@ -1,2194 +1,17 @@
|
|
|
1
|
-
import
|
|
1
|
+
import 'core-js/modules/es.iterator.constructor.js';
|
|
2
|
+
import 'core-js/modules/es.iterator.filter.js';
|
|
3
|
+
import 'core-js/modules/es.iterator.for-each.js';
|
|
4
|
+
import 'core-js/modules/es.iterator.map.js';
|
|
5
|
+
import 'core-js/modules/es.map.get-or-insert.js';
|
|
6
|
+
import 'core-js/modules/es.map.get-or-insert-computed.js';
|
|
7
|
+
import 'core-js/modules/es.set.difference.v2.js';
|
|
8
|
+
import 'core-js/modules/es.set.symmetric-difference.v2.js';
|
|
9
|
+
import 'core-js/modules/es.set.union.v2.js';
|
|
10
|
+
import 'core-js/modules/es.iterator.reduce.js';
|
|
11
|
+
import { symmetricDifference } from 'extra-set';
|
|
12
|
+
import 'core-js/modules/es.iterator.find.js';
|
|
2
13
|
import { BaseError } from 'make-error';
|
|
3
14
|
|
|
4
|
-
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
5
|
-
|
|
6
|
-
var check = function (it) {
|
|
7
|
-
return it && it.Math === Math && it;
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
11
|
-
var global$b =
|
|
12
|
-
// eslint-disable-next-line es/no-global-this -- safe
|
|
13
|
-
check(typeof globalThis == 'object' && globalThis) ||
|
|
14
|
-
check(typeof window == 'object' && window) ||
|
|
15
|
-
// eslint-disable-next-line no-restricted-globals -- safe
|
|
16
|
-
check(typeof self == 'object' && self) ||
|
|
17
|
-
check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
|
|
18
|
-
check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
|
|
19
|
-
// eslint-disable-next-line no-new-func -- fallback
|
|
20
|
-
(function () { return this; })() || Function('return this')();
|
|
21
|
-
|
|
22
|
-
var objectGetOwnPropertyDescriptor = {};
|
|
23
|
-
|
|
24
|
-
var fails$d = function (exec) {
|
|
25
|
-
try {
|
|
26
|
-
return !!exec();
|
|
27
|
-
} catch (error) {
|
|
28
|
-
return true;
|
|
29
|
-
}
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
var fails$c = fails$d;
|
|
33
|
-
|
|
34
|
-
// Detect IE8's incomplete defineProperty implementation
|
|
35
|
-
var descriptors = !fails$c(function () {
|
|
36
|
-
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
37
|
-
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
|
|
38
|
-
});
|
|
39
|
-
|
|
40
|
-
var fails$b = fails$d;
|
|
41
|
-
|
|
42
|
-
var functionBindNative = !fails$b(function () {
|
|
43
|
-
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
44
|
-
var test = (function () { /* empty */ }).bind();
|
|
45
|
-
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
46
|
-
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
47
|
-
});
|
|
48
|
-
|
|
49
|
-
var NATIVE_BIND$2 = functionBindNative;
|
|
50
|
-
|
|
51
|
-
var call$c = Function.prototype.call;
|
|
52
|
-
|
|
53
|
-
var functionCall = NATIVE_BIND$2 ? call$c.bind(call$c) : function () {
|
|
54
|
-
return call$c.apply(call$c, arguments);
|
|
55
|
-
};
|
|
56
|
-
|
|
57
|
-
var objectPropertyIsEnumerable = {};
|
|
58
|
-
|
|
59
|
-
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
60
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
61
|
-
var getOwnPropertyDescriptor$2 = Object.getOwnPropertyDescriptor;
|
|
62
|
-
|
|
63
|
-
// Nashorn ~ JDK8 bug
|
|
64
|
-
var NASHORN_BUG = getOwnPropertyDescriptor$2 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
|
|
65
|
-
|
|
66
|
-
// `Object.prototype.propertyIsEnumerable` method implementation
|
|
67
|
-
// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
|
|
68
|
-
objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
69
|
-
var descriptor = getOwnPropertyDescriptor$2(this, V);
|
|
70
|
-
return !!descriptor && descriptor.enumerable;
|
|
71
|
-
} : $propertyIsEnumerable;
|
|
72
|
-
|
|
73
|
-
var createPropertyDescriptor$3 = function (bitmap, value) {
|
|
74
|
-
return {
|
|
75
|
-
enumerable: !(bitmap & 1),
|
|
76
|
-
configurable: !(bitmap & 2),
|
|
77
|
-
writable: !(bitmap & 4),
|
|
78
|
-
value: value
|
|
79
|
-
};
|
|
80
|
-
};
|
|
81
|
-
|
|
82
|
-
var NATIVE_BIND$1 = functionBindNative;
|
|
83
|
-
|
|
84
|
-
var FunctionPrototype$1 = Function.prototype;
|
|
85
|
-
var call$b = FunctionPrototype$1.call;
|
|
86
|
-
var uncurryThisWithBind = NATIVE_BIND$1 && FunctionPrototype$1.bind.bind(call$b, call$b);
|
|
87
|
-
|
|
88
|
-
var functionUncurryThis = NATIVE_BIND$1 ? uncurryThisWithBind : function (fn) {
|
|
89
|
-
return function () {
|
|
90
|
-
return call$b.apply(fn, arguments);
|
|
91
|
-
};
|
|
92
|
-
};
|
|
93
|
-
|
|
94
|
-
var uncurryThis$d = functionUncurryThis;
|
|
95
|
-
|
|
96
|
-
var toString$1 = uncurryThis$d({}.toString);
|
|
97
|
-
var stringSlice$1 = uncurryThis$d(''.slice);
|
|
98
|
-
|
|
99
|
-
var classofRaw$2 = function (it) {
|
|
100
|
-
return stringSlice$1(toString$1(it), 8, -1);
|
|
101
|
-
};
|
|
102
|
-
|
|
103
|
-
var uncurryThis$c = functionUncurryThis;
|
|
104
|
-
var fails$a = fails$d;
|
|
105
|
-
var classof$3 = classofRaw$2;
|
|
106
|
-
|
|
107
|
-
var $Object$4 = Object;
|
|
108
|
-
var split = uncurryThis$c(''.split);
|
|
109
|
-
|
|
110
|
-
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
111
|
-
var indexedObject = fails$a(function () {
|
|
112
|
-
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
|
113
|
-
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
114
|
-
return !$Object$4('z').propertyIsEnumerable(0);
|
|
115
|
-
}) ? function (it) {
|
|
116
|
-
return classof$3(it) === 'String' ? split(it, '') : $Object$4(it);
|
|
117
|
-
} : $Object$4;
|
|
118
|
-
|
|
119
|
-
// we can't use just `it == null` since of `document.all` special case
|
|
120
|
-
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
|
|
121
|
-
var isNullOrUndefined$3 = function (it) {
|
|
122
|
-
return it === null || it === undefined;
|
|
123
|
-
};
|
|
124
|
-
|
|
125
|
-
var isNullOrUndefined$2 = isNullOrUndefined$3;
|
|
126
|
-
|
|
127
|
-
var $TypeError$d = TypeError;
|
|
128
|
-
|
|
129
|
-
// `RequireObjectCoercible` abstract operation
|
|
130
|
-
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
131
|
-
var requireObjectCoercible$2 = function (it) {
|
|
132
|
-
if (isNullOrUndefined$2(it)) throw new $TypeError$d("Can't call method on " + it);
|
|
133
|
-
return it;
|
|
134
|
-
};
|
|
135
|
-
|
|
136
|
-
// toObject with fallback for non-array-like ES3 strings
|
|
137
|
-
var IndexedObject = indexedObject;
|
|
138
|
-
var requireObjectCoercible$1 = requireObjectCoercible$2;
|
|
139
|
-
|
|
140
|
-
var toIndexedObject$4 = function (it) {
|
|
141
|
-
return IndexedObject(requireObjectCoercible$1(it));
|
|
142
|
-
};
|
|
143
|
-
|
|
144
|
-
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
145
|
-
var documentAll = typeof document == 'object' && document.all;
|
|
146
|
-
|
|
147
|
-
// `IsCallable` abstract operation
|
|
148
|
-
// https://tc39.es/ecma262/#sec-iscallable
|
|
149
|
-
// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
|
|
150
|
-
var isCallable$e = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
|
|
151
|
-
return typeof argument == 'function' || argument === documentAll;
|
|
152
|
-
} : function (argument) {
|
|
153
|
-
return typeof argument == 'function';
|
|
154
|
-
};
|
|
155
|
-
|
|
156
|
-
var isCallable$d = isCallable$e;
|
|
157
|
-
|
|
158
|
-
var isObject$6 = function (it) {
|
|
159
|
-
return typeof it == 'object' ? it !== null : isCallable$d(it);
|
|
160
|
-
};
|
|
161
|
-
|
|
162
|
-
var global$a = global$b;
|
|
163
|
-
var isCallable$c = isCallable$e;
|
|
164
|
-
|
|
165
|
-
var aFunction = function (argument) {
|
|
166
|
-
return isCallable$c(argument) ? argument : undefined;
|
|
167
|
-
};
|
|
168
|
-
|
|
169
|
-
var getBuiltIn$4 = function (namespace, method) {
|
|
170
|
-
return arguments.length < 2 ? aFunction(global$a[namespace]) : global$a[namespace] && global$a[namespace][method];
|
|
171
|
-
};
|
|
172
|
-
|
|
173
|
-
var uncurryThis$b = functionUncurryThis;
|
|
174
|
-
|
|
175
|
-
var objectIsPrototypeOf = uncurryThis$b({}.isPrototypeOf);
|
|
176
|
-
|
|
177
|
-
var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
|
|
178
|
-
|
|
179
|
-
var global$9 = global$b;
|
|
180
|
-
var userAgent = engineUserAgent;
|
|
181
|
-
|
|
182
|
-
var process = global$9.process;
|
|
183
|
-
var Deno = global$9.Deno;
|
|
184
|
-
var versions = process && process.versions || Deno && Deno.version;
|
|
185
|
-
var v8 = versions && versions.v8;
|
|
186
|
-
var match, version;
|
|
187
|
-
|
|
188
|
-
if (v8) {
|
|
189
|
-
match = v8.split('.');
|
|
190
|
-
// in old Chrome, versions of V8 isn't V8 = Chrome / 10
|
|
191
|
-
// but their correct versions are not interesting for us
|
|
192
|
-
version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
|
|
196
|
-
// so check `userAgent` even if `.v8` exists, but 0
|
|
197
|
-
if (!version && userAgent) {
|
|
198
|
-
match = userAgent.match(/Edge\/(\d+)/);
|
|
199
|
-
if (!match || match[1] >= 74) {
|
|
200
|
-
match = userAgent.match(/Chrome\/(\d+)/);
|
|
201
|
-
if (match) version = +match[1];
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
var engineV8Version = version;
|
|
206
|
-
|
|
207
|
-
/* eslint-disable es/no-symbol -- required for testing */
|
|
208
|
-
var V8_VERSION = engineV8Version;
|
|
209
|
-
var fails$9 = fails$d;
|
|
210
|
-
var global$8 = global$b;
|
|
211
|
-
|
|
212
|
-
var $String$3 = global$8.String;
|
|
213
|
-
|
|
214
|
-
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
215
|
-
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$9(function () {
|
|
216
|
-
var symbol = Symbol('symbol detection');
|
|
217
|
-
// Chrome 38 Symbol has incorrect toString conversion
|
|
218
|
-
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
219
|
-
// nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
|
|
220
|
-
// of course, fail.
|
|
221
|
-
return !$String$3(symbol) || !(Object(symbol) instanceof Symbol) ||
|
|
222
|
-
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
|
|
223
|
-
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
|
224
|
-
});
|
|
225
|
-
|
|
226
|
-
/* eslint-disable es/no-symbol -- required for testing */
|
|
227
|
-
var NATIVE_SYMBOL$1 = symbolConstructorDetection;
|
|
228
|
-
|
|
229
|
-
var useSymbolAsUid = NATIVE_SYMBOL$1
|
|
230
|
-
&& !Symbol.sham
|
|
231
|
-
&& typeof Symbol.iterator == 'symbol';
|
|
232
|
-
|
|
233
|
-
var getBuiltIn$3 = getBuiltIn$4;
|
|
234
|
-
var isCallable$b = isCallable$e;
|
|
235
|
-
var isPrototypeOf$2 = objectIsPrototypeOf;
|
|
236
|
-
var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
|
|
237
|
-
|
|
238
|
-
var $Object$3 = Object;
|
|
239
|
-
|
|
240
|
-
var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
|
|
241
|
-
return typeof it == 'symbol';
|
|
242
|
-
} : function (it) {
|
|
243
|
-
var $Symbol = getBuiltIn$3('Symbol');
|
|
244
|
-
return isCallable$b($Symbol) && isPrototypeOf$2($Symbol.prototype, $Object$3(it));
|
|
245
|
-
};
|
|
246
|
-
|
|
247
|
-
var $String$2 = String;
|
|
248
|
-
|
|
249
|
-
var tryToString$3 = function (argument) {
|
|
250
|
-
try {
|
|
251
|
-
return $String$2(argument);
|
|
252
|
-
} catch (error) {
|
|
253
|
-
return 'Object';
|
|
254
|
-
}
|
|
255
|
-
};
|
|
256
|
-
|
|
257
|
-
var isCallable$a = isCallable$e;
|
|
258
|
-
var tryToString$2 = tryToString$3;
|
|
259
|
-
|
|
260
|
-
var $TypeError$c = TypeError;
|
|
261
|
-
|
|
262
|
-
// `Assert: IsCallable(argument) is true`
|
|
263
|
-
var aCallable$a = function (argument) {
|
|
264
|
-
if (isCallable$a(argument)) return argument;
|
|
265
|
-
throw new $TypeError$c(tryToString$2(argument) + ' is not a function');
|
|
266
|
-
};
|
|
267
|
-
|
|
268
|
-
var aCallable$9 = aCallable$a;
|
|
269
|
-
var isNullOrUndefined$1 = isNullOrUndefined$3;
|
|
270
|
-
|
|
271
|
-
// `GetMethod` abstract operation
|
|
272
|
-
// https://tc39.es/ecma262/#sec-getmethod
|
|
273
|
-
var getMethod$4 = function (V, P) {
|
|
274
|
-
var func = V[P];
|
|
275
|
-
return isNullOrUndefined$1(func) ? undefined : aCallable$9(func);
|
|
276
|
-
};
|
|
277
|
-
|
|
278
|
-
var call$a = functionCall;
|
|
279
|
-
var isCallable$9 = isCallable$e;
|
|
280
|
-
var isObject$5 = isObject$6;
|
|
281
|
-
|
|
282
|
-
var $TypeError$b = TypeError;
|
|
283
|
-
|
|
284
|
-
// `OrdinaryToPrimitive` abstract operation
|
|
285
|
-
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
286
|
-
var ordinaryToPrimitive$1 = function (input, pref) {
|
|
287
|
-
var fn, val;
|
|
288
|
-
if (pref === 'string' && isCallable$9(fn = input.toString) && !isObject$5(val = call$a(fn, input))) return val;
|
|
289
|
-
if (isCallable$9(fn = input.valueOf) && !isObject$5(val = call$a(fn, input))) return val;
|
|
290
|
-
if (pref !== 'string' && isCallable$9(fn = input.toString) && !isObject$5(val = call$a(fn, input))) return val;
|
|
291
|
-
throw new $TypeError$b("Can't convert object to primitive value");
|
|
292
|
-
};
|
|
293
|
-
|
|
294
|
-
var sharedStore = {exports: {}};
|
|
295
|
-
|
|
296
|
-
var isPure = false;
|
|
297
|
-
|
|
298
|
-
var global$7 = global$b;
|
|
299
|
-
|
|
300
|
-
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
301
|
-
var defineProperty$2 = Object.defineProperty;
|
|
302
|
-
|
|
303
|
-
var defineGlobalProperty$3 = function (key, value) {
|
|
304
|
-
try {
|
|
305
|
-
defineProperty$2(global$7, key, { value: value, configurable: true, writable: true });
|
|
306
|
-
} catch (error) {
|
|
307
|
-
global$7[key] = value;
|
|
308
|
-
} return value;
|
|
309
|
-
};
|
|
310
|
-
|
|
311
|
-
var globalThis$1 = global$b;
|
|
312
|
-
var defineGlobalProperty$2 = defineGlobalProperty$3;
|
|
313
|
-
|
|
314
|
-
var SHARED = '__core-js_shared__';
|
|
315
|
-
var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
|
|
316
|
-
|
|
317
|
-
(store$3.versions || (store$3.versions = [])).push({
|
|
318
|
-
version: '3.36.1',
|
|
319
|
-
mode: 'global',
|
|
320
|
-
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
321
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
|
|
322
|
-
source: 'https://github.com/zloirock/core-js'
|
|
323
|
-
});
|
|
324
|
-
|
|
325
|
-
var sharedStoreExports = sharedStore.exports;
|
|
326
|
-
|
|
327
|
-
var store$2 = sharedStoreExports;
|
|
328
|
-
|
|
329
|
-
var shared$3 = function (key, value) {
|
|
330
|
-
return store$2[key] || (store$2[key] = value || {});
|
|
331
|
-
};
|
|
332
|
-
|
|
333
|
-
var requireObjectCoercible = requireObjectCoercible$2;
|
|
334
|
-
|
|
335
|
-
var $Object$2 = Object;
|
|
336
|
-
|
|
337
|
-
// `ToObject` abstract operation
|
|
338
|
-
// https://tc39.es/ecma262/#sec-toobject
|
|
339
|
-
var toObject$3 = function (argument) {
|
|
340
|
-
return $Object$2(requireObjectCoercible(argument));
|
|
341
|
-
};
|
|
342
|
-
|
|
343
|
-
var uncurryThis$a = functionUncurryThis;
|
|
344
|
-
var toObject$2 = toObject$3;
|
|
345
|
-
|
|
346
|
-
var hasOwnProperty = uncurryThis$a({}.hasOwnProperty);
|
|
347
|
-
|
|
348
|
-
// `HasOwnProperty` abstract operation
|
|
349
|
-
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
350
|
-
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
351
|
-
var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
352
|
-
return hasOwnProperty(toObject$2(it), key);
|
|
353
|
-
};
|
|
354
|
-
|
|
355
|
-
var uncurryThis$9 = functionUncurryThis;
|
|
356
|
-
|
|
357
|
-
var id = 0;
|
|
358
|
-
var postfix = Math.random();
|
|
359
|
-
var toString = uncurryThis$9(1.0.toString);
|
|
360
|
-
|
|
361
|
-
var uid$2 = function (key) {
|
|
362
|
-
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
|
|
363
|
-
};
|
|
364
|
-
|
|
365
|
-
var global$6 = global$b;
|
|
366
|
-
var shared$2 = shared$3;
|
|
367
|
-
var hasOwn$8 = hasOwnProperty_1;
|
|
368
|
-
var uid$1 = uid$2;
|
|
369
|
-
var NATIVE_SYMBOL = symbolConstructorDetection;
|
|
370
|
-
var USE_SYMBOL_AS_UID = useSymbolAsUid;
|
|
371
|
-
|
|
372
|
-
var Symbol$1 = global$6.Symbol;
|
|
373
|
-
var WellKnownSymbolsStore = shared$2('wks');
|
|
374
|
-
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
|
|
375
|
-
|
|
376
|
-
var wellKnownSymbol$8 = function (name) {
|
|
377
|
-
if (!hasOwn$8(WellKnownSymbolsStore, name)) {
|
|
378
|
-
WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$8(Symbol$1, name)
|
|
379
|
-
? Symbol$1[name]
|
|
380
|
-
: createWellKnownSymbol('Symbol.' + name);
|
|
381
|
-
} return WellKnownSymbolsStore[name];
|
|
382
|
-
};
|
|
383
|
-
|
|
384
|
-
var call$9 = functionCall;
|
|
385
|
-
var isObject$4 = isObject$6;
|
|
386
|
-
var isSymbol$1 = isSymbol$2;
|
|
387
|
-
var getMethod$3 = getMethod$4;
|
|
388
|
-
var ordinaryToPrimitive = ordinaryToPrimitive$1;
|
|
389
|
-
var wellKnownSymbol$7 = wellKnownSymbol$8;
|
|
390
|
-
|
|
391
|
-
var $TypeError$a = TypeError;
|
|
392
|
-
var TO_PRIMITIVE = wellKnownSymbol$7('toPrimitive');
|
|
393
|
-
|
|
394
|
-
// `ToPrimitive` abstract operation
|
|
395
|
-
// https://tc39.es/ecma262/#sec-toprimitive
|
|
396
|
-
var toPrimitive$1 = function (input, pref) {
|
|
397
|
-
if (!isObject$4(input) || isSymbol$1(input)) return input;
|
|
398
|
-
var exoticToPrim = getMethod$3(input, TO_PRIMITIVE);
|
|
399
|
-
var result;
|
|
400
|
-
if (exoticToPrim) {
|
|
401
|
-
if (pref === undefined) pref = 'default';
|
|
402
|
-
result = call$9(exoticToPrim, input, pref);
|
|
403
|
-
if (!isObject$4(result) || isSymbol$1(result)) return result;
|
|
404
|
-
throw new $TypeError$a("Can't convert object to primitive value");
|
|
405
|
-
}
|
|
406
|
-
if (pref === undefined) pref = 'number';
|
|
407
|
-
return ordinaryToPrimitive(input, pref);
|
|
408
|
-
};
|
|
409
|
-
|
|
410
|
-
var toPrimitive = toPrimitive$1;
|
|
411
|
-
var isSymbol = isSymbol$2;
|
|
412
|
-
|
|
413
|
-
// `ToPropertyKey` abstract operation
|
|
414
|
-
// https://tc39.es/ecma262/#sec-topropertykey
|
|
415
|
-
var toPropertyKey$2 = function (argument) {
|
|
416
|
-
var key = toPrimitive(argument, 'string');
|
|
417
|
-
return isSymbol(key) ? key : key + '';
|
|
418
|
-
};
|
|
419
|
-
|
|
420
|
-
var global$5 = global$b;
|
|
421
|
-
var isObject$3 = isObject$6;
|
|
422
|
-
|
|
423
|
-
var document$1 = global$5.document;
|
|
424
|
-
// typeof document.createElement is 'object' in old IE
|
|
425
|
-
var EXISTS$1 = isObject$3(document$1) && isObject$3(document$1.createElement);
|
|
426
|
-
|
|
427
|
-
var documentCreateElement$1 = function (it) {
|
|
428
|
-
return EXISTS$1 ? document$1.createElement(it) : {};
|
|
429
|
-
};
|
|
430
|
-
|
|
431
|
-
var DESCRIPTORS$a = descriptors;
|
|
432
|
-
var fails$8 = fails$d;
|
|
433
|
-
var createElement = documentCreateElement$1;
|
|
434
|
-
|
|
435
|
-
// Thanks to IE8 for its funny defineProperty
|
|
436
|
-
var ie8DomDefine = !DESCRIPTORS$a && !fails$8(function () {
|
|
437
|
-
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
438
|
-
return Object.defineProperty(createElement('div'), 'a', {
|
|
439
|
-
get: function () { return 7; }
|
|
440
|
-
}).a !== 7;
|
|
441
|
-
});
|
|
442
|
-
|
|
443
|
-
var DESCRIPTORS$9 = descriptors;
|
|
444
|
-
var call$8 = functionCall;
|
|
445
|
-
var propertyIsEnumerableModule = objectPropertyIsEnumerable;
|
|
446
|
-
var createPropertyDescriptor$2 = createPropertyDescriptor$3;
|
|
447
|
-
var toIndexedObject$3 = toIndexedObject$4;
|
|
448
|
-
var toPropertyKey$1 = toPropertyKey$2;
|
|
449
|
-
var hasOwn$7 = hasOwnProperty_1;
|
|
450
|
-
var IE8_DOM_DEFINE$1 = ie8DomDefine;
|
|
451
|
-
|
|
452
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
453
|
-
var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
|
454
|
-
|
|
455
|
-
// `Object.getOwnPropertyDescriptor` method
|
|
456
|
-
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
|
|
457
|
-
objectGetOwnPropertyDescriptor.f = DESCRIPTORS$9 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
|
|
458
|
-
O = toIndexedObject$3(O);
|
|
459
|
-
P = toPropertyKey$1(P);
|
|
460
|
-
if (IE8_DOM_DEFINE$1) try {
|
|
461
|
-
return $getOwnPropertyDescriptor$1(O, P);
|
|
462
|
-
} catch (error) { /* empty */ }
|
|
463
|
-
if (hasOwn$7(O, P)) return createPropertyDescriptor$2(!call$8(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
464
|
-
};
|
|
465
|
-
|
|
466
|
-
var objectDefineProperty = {};
|
|
467
|
-
|
|
468
|
-
var DESCRIPTORS$8 = descriptors;
|
|
469
|
-
var fails$7 = fails$d;
|
|
470
|
-
|
|
471
|
-
// V8 ~ Chrome 36-
|
|
472
|
-
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
473
|
-
var v8PrototypeDefineBug = DESCRIPTORS$8 && fails$7(function () {
|
|
474
|
-
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
475
|
-
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
476
|
-
value: 42,
|
|
477
|
-
writable: false
|
|
478
|
-
}).prototype !== 42;
|
|
479
|
-
});
|
|
480
|
-
|
|
481
|
-
var isObject$2 = isObject$6;
|
|
482
|
-
|
|
483
|
-
var $String$1 = String;
|
|
484
|
-
var $TypeError$9 = TypeError;
|
|
485
|
-
|
|
486
|
-
// `Assert: Type(argument) is Object`
|
|
487
|
-
var anObject$f = function (argument) {
|
|
488
|
-
if (isObject$2(argument)) return argument;
|
|
489
|
-
throw new $TypeError$9($String$1(argument) + ' is not an object');
|
|
490
|
-
};
|
|
491
|
-
|
|
492
|
-
var DESCRIPTORS$7 = descriptors;
|
|
493
|
-
var IE8_DOM_DEFINE = ie8DomDefine;
|
|
494
|
-
var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
|
|
495
|
-
var anObject$e = anObject$f;
|
|
496
|
-
var toPropertyKey = toPropertyKey$2;
|
|
497
|
-
|
|
498
|
-
var $TypeError$8 = TypeError;
|
|
499
|
-
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
500
|
-
var $defineProperty = Object.defineProperty;
|
|
501
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
502
|
-
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
503
|
-
var ENUMERABLE = 'enumerable';
|
|
504
|
-
var CONFIGURABLE$1 = 'configurable';
|
|
505
|
-
var WRITABLE = 'writable';
|
|
506
|
-
|
|
507
|
-
// `Object.defineProperty` method
|
|
508
|
-
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
509
|
-
objectDefineProperty.f = DESCRIPTORS$7 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
|
|
510
|
-
anObject$e(O);
|
|
511
|
-
P = toPropertyKey(P);
|
|
512
|
-
anObject$e(Attributes);
|
|
513
|
-
if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
|
|
514
|
-
var current = $getOwnPropertyDescriptor(O, P);
|
|
515
|
-
if (current && current[WRITABLE]) {
|
|
516
|
-
O[P] = Attributes.value;
|
|
517
|
-
Attributes = {
|
|
518
|
-
configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
|
|
519
|
-
enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
|
|
520
|
-
writable: false
|
|
521
|
-
};
|
|
522
|
-
}
|
|
523
|
-
} return $defineProperty(O, P, Attributes);
|
|
524
|
-
} : $defineProperty : function defineProperty(O, P, Attributes) {
|
|
525
|
-
anObject$e(O);
|
|
526
|
-
P = toPropertyKey(P);
|
|
527
|
-
anObject$e(Attributes);
|
|
528
|
-
if (IE8_DOM_DEFINE) try {
|
|
529
|
-
return $defineProperty(O, P, Attributes);
|
|
530
|
-
} catch (error) { /* empty */ }
|
|
531
|
-
if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$8('Accessors not supported');
|
|
532
|
-
if ('value' in Attributes) O[P] = Attributes.value;
|
|
533
|
-
return O;
|
|
534
|
-
};
|
|
535
|
-
|
|
536
|
-
var DESCRIPTORS$6 = descriptors;
|
|
537
|
-
var definePropertyModule$4 = objectDefineProperty;
|
|
538
|
-
var createPropertyDescriptor$1 = createPropertyDescriptor$3;
|
|
539
|
-
|
|
540
|
-
var createNonEnumerableProperty$3 = DESCRIPTORS$6 ? function (object, key, value) {
|
|
541
|
-
return definePropertyModule$4.f(object, key, createPropertyDescriptor$1(1, value));
|
|
542
|
-
} : function (object, key, value) {
|
|
543
|
-
object[key] = value;
|
|
544
|
-
return object;
|
|
545
|
-
};
|
|
546
|
-
|
|
547
|
-
var makeBuiltIn$3 = {exports: {}};
|
|
548
|
-
|
|
549
|
-
var DESCRIPTORS$5 = descriptors;
|
|
550
|
-
var hasOwn$6 = hasOwnProperty_1;
|
|
551
|
-
|
|
552
|
-
var FunctionPrototype = Function.prototype;
|
|
553
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
554
|
-
var getDescriptor = DESCRIPTORS$5 && Object.getOwnPropertyDescriptor;
|
|
555
|
-
|
|
556
|
-
var EXISTS = hasOwn$6(FunctionPrototype, 'name');
|
|
557
|
-
// additional protection from minified / mangled / dropped function names
|
|
558
|
-
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
559
|
-
var CONFIGURABLE = EXISTS && (!DESCRIPTORS$5 || (DESCRIPTORS$5 && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
560
|
-
|
|
561
|
-
var functionName = {
|
|
562
|
-
EXISTS: EXISTS,
|
|
563
|
-
PROPER: PROPER,
|
|
564
|
-
CONFIGURABLE: CONFIGURABLE
|
|
565
|
-
};
|
|
566
|
-
|
|
567
|
-
var uncurryThis$8 = functionUncurryThis;
|
|
568
|
-
var isCallable$8 = isCallable$e;
|
|
569
|
-
var store$1 = sharedStoreExports;
|
|
570
|
-
|
|
571
|
-
var functionToString = uncurryThis$8(Function.toString);
|
|
572
|
-
|
|
573
|
-
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
574
|
-
if (!isCallable$8(store$1.inspectSource)) {
|
|
575
|
-
store$1.inspectSource = function (it) {
|
|
576
|
-
return functionToString(it);
|
|
577
|
-
};
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
var inspectSource$1 = store$1.inspectSource;
|
|
581
|
-
|
|
582
|
-
var global$4 = global$b;
|
|
583
|
-
var isCallable$7 = isCallable$e;
|
|
584
|
-
|
|
585
|
-
var WeakMap$1 = global$4.WeakMap;
|
|
586
|
-
|
|
587
|
-
var weakMapBasicDetection = isCallable$7(WeakMap$1) && /native code/.test(String(WeakMap$1));
|
|
588
|
-
|
|
589
|
-
var shared$1 = shared$3;
|
|
590
|
-
var uid = uid$2;
|
|
591
|
-
|
|
592
|
-
var keys$1 = shared$1('keys');
|
|
593
|
-
|
|
594
|
-
var sharedKey$3 = function (key) {
|
|
595
|
-
return keys$1[key] || (keys$1[key] = uid(key));
|
|
596
|
-
};
|
|
597
|
-
|
|
598
|
-
var hiddenKeys$4 = {};
|
|
599
|
-
|
|
600
|
-
var NATIVE_WEAK_MAP = weakMapBasicDetection;
|
|
601
|
-
var global$3 = global$b;
|
|
602
|
-
var isObject$1 = isObject$6;
|
|
603
|
-
var createNonEnumerableProperty$2 = createNonEnumerableProperty$3;
|
|
604
|
-
var hasOwn$5 = hasOwnProperty_1;
|
|
605
|
-
var shared = sharedStoreExports;
|
|
606
|
-
var sharedKey$2 = sharedKey$3;
|
|
607
|
-
var hiddenKeys$3 = hiddenKeys$4;
|
|
608
|
-
|
|
609
|
-
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
610
|
-
var TypeError$1 = global$3.TypeError;
|
|
611
|
-
var WeakMap = global$3.WeakMap;
|
|
612
|
-
var set, get, has$6;
|
|
613
|
-
|
|
614
|
-
var enforce = function (it) {
|
|
615
|
-
return has$6(it) ? get(it) : set(it, {});
|
|
616
|
-
};
|
|
617
|
-
|
|
618
|
-
var getterFor = function (TYPE) {
|
|
619
|
-
return function (it) {
|
|
620
|
-
var state;
|
|
621
|
-
if (!isObject$1(it) || (state = get(it)).type !== TYPE) {
|
|
622
|
-
throw new TypeError$1('Incompatible receiver, ' + TYPE + ' required');
|
|
623
|
-
} return state;
|
|
624
|
-
};
|
|
625
|
-
};
|
|
626
|
-
|
|
627
|
-
if (NATIVE_WEAK_MAP || shared.state) {
|
|
628
|
-
var store = shared.state || (shared.state = new WeakMap());
|
|
629
|
-
/* eslint-disable no-self-assign -- prototype methods protection */
|
|
630
|
-
store.get = store.get;
|
|
631
|
-
store.has = store.has;
|
|
632
|
-
store.set = store.set;
|
|
633
|
-
/* eslint-enable no-self-assign -- prototype methods protection */
|
|
634
|
-
set = function (it, metadata) {
|
|
635
|
-
if (store.has(it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
|
|
636
|
-
metadata.facade = it;
|
|
637
|
-
store.set(it, metadata);
|
|
638
|
-
return metadata;
|
|
639
|
-
};
|
|
640
|
-
get = function (it) {
|
|
641
|
-
return store.get(it) || {};
|
|
642
|
-
};
|
|
643
|
-
has$6 = function (it) {
|
|
644
|
-
return store.has(it);
|
|
645
|
-
};
|
|
646
|
-
} else {
|
|
647
|
-
var STATE = sharedKey$2('state');
|
|
648
|
-
hiddenKeys$3[STATE] = true;
|
|
649
|
-
set = function (it, metadata) {
|
|
650
|
-
if (hasOwn$5(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
|
|
651
|
-
metadata.facade = it;
|
|
652
|
-
createNonEnumerableProperty$2(it, STATE, metadata);
|
|
653
|
-
return metadata;
|
|
654
|
-
};
|
|
655
|
-
get = function (it) {
|
|
656
|
-
return hasOwn$5(it, STATE) ? it[STATE] : {};
|
|
657
|
-
};
|
|
658
|
-
has$6 = function (it) {
|
|
659
|
-
return hasOwn$5(it, STATE);
|
|
660
|
-
};
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
var internalState = {
|
|
664
|
-
set: set,
|
|
665
|
-
get: get,
|
|
666
|
-
has: has$6,
|
|
667
|
-
enforce: enforce,
|
|
668
|
-
getterFor: getterFor
|
|
669
|
-
};
|
|
670
|
-
|
|
671
|
-
var uncurryThis$7 = functionUncurryThis;
|
|
672
|
-
var fails$6 = fails$d;
|
|
673
|
-
var isCallable$6 = isCallable$e;
|
|
674
|
-
var hasOwn$4 = hasOwnProperty_1;
|
|
675
|
-
var DESCRIPTORS$4 = descriptors;
|
|
676
|
-
var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
|
677
|
-
var inspectSource = inspectSource$1;
|
|
678
|
-
var InternalStateModule$1 = internalState;
|
|
679
|
-
|
|
680
|
-
var enforceInternalState = InternalStateModule$1.enforce;
|
|
681
|
-
var getInternalState = InternalStateModule$1.get;
|
|
682
|
-
var $String = String;
|
|
683
|
-
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
684
|
-
var defineProperty$1 = Object.defineProperty;
|
|
685
|
-
var stringSlice = uncurryThis$7(''.slice);
|
|
686
|
-
var replace = uncurryThis$7(''.replace);
|
|
687
|
-
var join = uncurryThis$7([].join);
|
|
688
|
-
|
|
689
|
-
var CONFIGURABLE_LENGTH = DESCRIPTORS$4 && !fails$6(function () {
|
|
690
|
-
return defineProperty$1(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
691
|
-
});
|
|
692
|
-
|
|
693
|
-
var TEMPLATE = String(String).split('String');
|
|
694
|
-
|
|
695
|
-
var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
|
|
696
|
-
if (stringSlice($String(name), 0, 7) === 'Symbol(') {
|
|
697
|
-
name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
|
|
698
|
-
}
|
|
699
|
-
if (options && options.getter) name = 'get ' + name;
|
|
700
|
-
if (options && options.setter) name = 'set ' + name;
|
|
701
|
-
if (!hasOwn$4(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
|
702
|
-
if (DESCRIPTORS$4) defineProperty$1(value, 'name', { value: name, configurable: true });
|
|
703
|
-
else value.name = name;
|
|
704
|
-
}
|
|
705
|
-
if (CONFIGURABLE_LENGTH && options && hasOwn$4(options, 'arity') && value.length !== options.arity) {
|
|
706
|
-
defineProperty$1(value, 'length', { value: options.arity });
|
|
707
|
-
}
|
|
708
|
-
try {
|
|
709
|
-
if (options && hasOwn$4(options, 'constructor') && options.constructor) {
|
|
710
|
-
if (DESCRIPTORS$4) defineProperty$1(value, 'prototype', { writable: false });
|
|
711
|
-
// in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
|
|
712
|
-
} else if (value.prototype) value.prototype = undefined;
|
|
713
|
-
} catch (error) { /* empty */ }
|
|
714
|
-
var state = enforceInternalState(value);
|
|
715
|
-
if (!hasOwn$4(state, 'source')) {
|
|
716
|
-
state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
|
|
717
|
-
} return value;
|
|
718
|
-
};
|
|
719
|
-
|
|
720
|
-
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
|
721
|
-
// eslint-disable-next-line no-extend-native -- required
|
|
722
|
-
Function.prototype.toString = makeBuiltIn$2(function toString() {
|
|
723
|
-
return isCallable$6(this) && getInternalState(this).source || inspectSource(this);
|
|
724
|
-
}, 'toString');
|
|
725
|
-
|
|
726
|
-
var makeBuiltInExports = makeBuiltIn$3.exports;
|
|
727
|
-
|
|
728
|
-
var isCallable$5 = isCallable$e;
|
|
729
|
-
var definePropertyModule$3 = objectDefineProperty;
|
|
730
|
-
var makeBuiltIn$1 = makeBuiltInExports;
|
|
731
|
-
var defineGlobalProperty$1 = defineGlobalProperty$3;
|
|
732
|
-
|
|
733
|
-
var defineBuiltIn$3 = function (O, key, value, options) {
|
|
734
|
-
if (!options) options = {};
|
|
735
|
-
var simple = options.enumerable;
|
|
736
|
-
var name = options.name !== undefined ? options.name : key;
|
|
737
|
-
if (isCallable$5(value)) makeBuiltIn$1(value, name, options);
|
|
738
|
-
if (options.global) {
|
|
739
|
-
if (simple) O[key] = value;
|
|
740
|
-
else defineGlobalProperty$1(key, value);
|
|
741
|
-
} else {
|
|
742
|
-
try {
|
|
743
|
-
if (!options.unsafe) delete O[key];
|
|
744
|
-
else if (O[key]) simple = true;
|
|
745
|
-
} catch (error) { /* empty */ }
|
|
746
|
-
if (simple) O[key] = value;
|
|
747
|
-
else definePropertyModule$3.f(O, key, {
|
|
748
|
-
value: value,
|
|
749
|
-
enumerable: false,
|
|
750
|
-
configurable: !options.nonConfigurable,
|
|
751
|
-
writable: !options.nonWritable
|
|
752
|
-
});
|
|
753
|
-
} return O;
|
|
754
|
-
};
|
|
755
|
-
|
|
756
|
-
var objectGetOwnPropertyNames = {};
|
|
757
|
-
|
|
758
|
-
var ceil = Math.ceil;
|
|
759
|
-
var floor = Math.floor;
|
|
760
|
-
|
|
761
|
-
// `Math.trunc` method
|
|
762
|
-
// https://tc39.es/ecma262/#sec-math.trunc
|
|
763
|
-
// eslint-disable-next-line es/no-math-trunc -- safe
|
|
764
|
-
var mathTrunc = Math.trunc || function trunc(x) {
|
|
765
|
-
var n = +x;
|
|
766
|
-
return (n > 0 ? floor : ceil)(n);
|
|
767
|
-
};
|
|
768
|
-
|
|
769
|
-
var trunc = mathTrunc;
|
|
770
|
-
|
|
771
|
-
// `ToIntegerOrInfinity` abstract operation
|
|
772
|
-
// https://tc39.es/ecma262/#sec-tointegerorinfinity
|
|
773
|
-
var toIntegerOrInfinity$3 = function (argument) {
|
|
774
|
-
var number = +argument;
|
|
775
|
-
// eslint-disable-next-line no-self-compare -- NaN check
|
|
776
|
-
return number !== number || number === 0 ? 0 : trunc(number);
|
|
777
|
-
};
|
|
778
|
-
|
|
779
|
-
var toIntegerOrInfinity$2 = toIntegerOrInfinity$3;
|
|
780
|
-
|
|
781
|
-
var max$1 = Math.max;
|
|
782
|
-
var min$1 = Math.min;
|
|
783
|
-
|
|
784
|
-
// Helper for a popular repeating case of the spec:
|
|
785
|
-
// Let integer be ? ToInteger(index).
|
|
786
|
-
// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
|
|
787
|
-
var toAbsoluteIndex$1 = function (index, length) {
|
|
788
|
-
var integer = toIntegerOrInfinity$2(index);
|
|
789
|
-
return integer < 0 ? max$1(integer + length, 0) : min$1(integer, length);
|
|
790
|
-
};
|
|
791
|
-
|
|
792
|
-
var toIntegerOrInfinity$1 = toIntegerOrInfinity$3;
|
|
793
|
-
|
|
794
|
-
var min = Math.min;
|
|
795
|
-
|
|
796
|
-
// `ToLength` abstract operation
|
|
797
|
-
// https://tc39.es/ecma262/#sec-tolength
|
|
798
|
-
var toLength$1 = function (argument) {
|
|
799
|
-
var len = toIntegerOrInfinity$1(argument);
|
|
800
|
-
return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
|
|
801
|
-
};
|
|
802
|
-
|
|
803
|
-
var toLength = toLength$1;
|
|
804
|
-
|
|
805
|
-
// `LengthOfArrayLike` abstract operation
|
|
806
|
-
// https://tc39.es/ecma262/#sec-lengthofarraylike
|
|
807
|
-
var lengthOfArrayLike$3 = function (obj) {
|
|
808
|
-
return toLength(obj.length);
|
|
809
|
-
};
|
|
810
|
-
|
|
811
|
-
var toIndexedObject$2 = toIndexedObject$4;
|
|
812
|
-
var toAbsoluteIndex = toAbsoluteIndex$1;
|
|
813
|
-
var lengthOfArrayLike$2 = lengthOfArrayLike$3;
|
|
814
|
-
|
|
815
|
-
// `Array.prototype.{ indexOf, includes }` methods implementation
|
|
816
|
-
var createMethod = function (IS_INCLUDES) {
|
|
817
|
-
return function ($this, el, fromIndex) {
|
|
818
|
-
var O = toIndexedObject$2($this);
|
|
819
|
-
var length = lengthOfArrayLike$2(O);
|
|
820
|
-
if (length === 0) return !IS_INCLUDES && -1;
|
|
821
|
-
var index = toAbsoluteIndex(fromIndex, length);
|
|
822
|
-
var value;
|
|
823
|
-
// Array#includes uses SameValueZero equality algorithm
|
|
824
|
-
// eslint-disable-next-line no-self-compare -- NaN check
|
|
825
|
-
if (IS_INCLUDES && el !== el) while (length > index) {
|
|
826
|
-
value = O[index++];
|
|
827
|
-
// eslint-disable-next-line no-self-compare -- NaN check
|
|
828
|
-
if (value !== value) return true;
|
|
829
|
-
// Array#indexOf ignores holes, Array#includes - not
|
|
830
|
-
} else for (;length > index; index++) {
|
|
831
|
-
if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
|
|
832
|
-
} return !IS_INCLUDES && -1;
|
|
833
|
-
};
|
|
834
|
-
};
|
|
835
|
-
|
|
836
|
-
var arrayIncludes = {
|
|
837
|
-
// `Array.prototype.includes` method
|
|
838
|
-
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
839
|
-
includes: createMethod(true),
|
|
840
|
-
// `Array.prototype.indexOf` method
|
|
841
|
-
// https://tc39.es/ecma262/#sec-array.prototype.indexof
|
|
842
|
-
indexOf: createMethod(false)
|
|
843
|
-
};
|
|
844
|
-
|
|
845
|
-
var uncurryThis$6 = functionUncurryThis;
|
|
846
|
-
var hasOwn$3 = hasOwnProperty_1;
|
|
847
|
-
var toIndexedObject$1 = toIndexedObject$4;
|
|
848
|
-
var indexOf = arrayIncludes.indexOf;
|
|
849
|
-
var hiddenKeys$2 = hiddenKeys$4;
|
|
850
|
-
|
|
851
|
-
var push = uncurryThis$6([].push);
|
|
852
|
-
|
|
853
|
-
var objectKeysInternal = function (object, names) {
|
|
854
|
-
var O = toIndexedObject$1(object);
|
|
855
|
-
var i = 0;
|
|
856
|
-
var result = [];
|
|
857
|
-
var key;
|
|
858
|
-
for (key in O) !hasOwn$3(hiddenKeys$2, key) && hasOwn$3(O, key) && push(result, key);
|
|
859
|
-
// Don't enum bug & hidden keys
|
|
860
|
-
while (names.length > i) if (hasOwn$3(O, key = names[i++])) {
|
|
861
|
-
~indexOf(result, key) || push(result, key);
|
|
862
|
-
}
|
|
863
|
-
return result;
|
|
864
|
-
};
|
|
865
|
-
|
|
866
|
-
// IE8- don't enum bug keys
|
|
867
|
-
var enumBugKeys$3 = [
|
|
868
|
-
'constructor',
|
|
869
|
-
'hasOwnProperty',
|
|
870
|
-
'isPrototypeOf',
|
|
871
|
-
'propertyIsEnumerable',
|
|
872
|
-
'toLocaleString',
|
|
873
|
-
'toString',
|
|
874
|
-
'valueOf'
|
|
875
|
-
];
|
|
876
|
-
|
|
877
|
-
var internalObjectKeys$1 = objectKeysInternal;
|
|
878
|
-
var enumBugKeys$2 = enumBugKeys$3;
|
|
879
|
-
|
|
880
|
-
var hiddenKeys$1 = enumBugKeys$2.concat('length', 'prototype');
|
|
881
|
-
|
|
882
|
-
// `Object.getOwnPropertyNames` method
|
|
883
|
-
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
884
|
-
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
885
|
-
objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
886
|
-
return internalObjectKeys$1(O, hiddenKeys$1);
|
|
887
|
-
};
|
|
888
|
-
|
|
889
|
-
var objectGetOwnPropertySymbols = {};
|
|
890
|
-
|
|
891
|
-
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
892
|
-
objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
|
|
893
|
-
|
|
894
|
-
var getBuiltIn$2 = getBuiltIn$4;
|
|
895
|
-
var uncurryThis$5 = functionUncurryThis;
|
|
896
|
-
var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
|
|
897
|
-
var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
|
898
|
-
var anObject$d = anObject$f;
|
|
899
|
-
|
|
900
|
-
var concat = uncurryThis$5([].concat);
|
|
901
|
-
|
|
902
|
-
// all object keys, includes non-enumerable and symbols
|
|
903
|
-
var ownKeys$1 = getBuiltIn$2('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
904
|
-
var keys = getOwnPropertyNamesModule.f(anObject$d(it));
|
|
905
|
-
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
|
906
|
-
return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
|
|
907
|
-
};
|
|
908
|
-
|
|
909
|
-
var hasOwn$2 = hasOwnProperty_1;
|
|
910
|
-
var ownKeys = ownKeys$1;
|
|
911
|
-
var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
|
|
912
|
-
var definePropertyModule$2 = objectDefineProperty;
|
|
913
|
-
|
|
914
|
-
var copyConstructorProperties$1 = function (target, source, exceptions) {
|
|
915
|
-
var keys = ownKeys(source);
|
|
916
|
-
var defineProperty = definePropertyModule$2.f;
|
|
917
|
-
var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
|
918
|
-
for (var i = 0; i < keys.length; i++) {
|
|
919
|
-
var key = keys[i];
|
|
920
|
-
if (!hasOwn$2(target, key) && !(exceptions && hasOwn$2(exceptions, key))) {
|
|
921
|
-
defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
|
922
|
-
}
|
|
923
|
-
}
|
|
924
|
-
};
|
|
925
|
-
|
|
926
|
-
var fails$5 = fails$d;
|
|
927
|
-
var isCallable$4 = isCallable$e;
|
|
928
|
-
|
|
929
|
-
var replacement = /#|\.prototype\./;
|
|
930
|
-
|
|
931
|
-
var isForced$1 = function (feature, detection) {
|
|
932
|
-
var value = data[normalize(feature)];
|
|
933
|
-
return value === POLYFILL ? true
|
|
934
|
-
: value === NATIVE ? false
|
|
935
|
-
: isCallable$4(detection) ? fails$5(detection)
|
|
936
|
-
: !!detection;
|
|
937
|
-
};
|
|
938
|
-
|
|
939
|
-
var normalize = isForced$1.normalize = function (string) {
|
|
940
|
-
return String(string).replace(replacement, '.').toLowerCase();
|
|
941
|
-
};
|
|
942
|
-
|
|
943
|
-
var data = isForced$1.data = {};
|
|
944
|
-
var NATIVE = isForced$1.NATIVE = 'N';
|
|
945
|
-
var POLYFILL = isForced$1.POLYFILL = 'P';
|
|
946
|
-
|
|
947
|
-
var isForced_1 = isForced$1;
|
|
948
|
-
|
|
949
|
-
var global$2 = global$b;
|
|
950
|
-
var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
|
|
951
|
-
var createNonEnumerableProperty$1 = createNonEnumerableProperty$3;
|
|
952
|
-
var defineBuiltIn$2 = defineBuiltIn$3;
|
|
953
|
-
var defineGlobalProperty = defineGlobalProperty$3;
|
|
954
|
-
var copyConstructorProperties = copyConstructorProperties$1;
|
|
955
|
-
var isForced = isForced_1;
|
|
956
|
-
|
|
957
|
-
/*
|
|
958
|
-
options.target - name of the target object
|
|
959
|
-
options.global - target is the global object
|
|
960
|
-
options.stat - export as static methods of target
|
|
961
|
-
options.proto - export as prototype methods of target
|
|
962
|
-
options.real - real prototype method for the `pure` version
|
|
963
|
-
options.forced - export even if the native feature is available
|
|
964
|
-
options.bind - bind methods to the target, required for the `pure` version
|
|
965
|
-
options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
|
|
966
|
-
options.unsafe - use the simple assignment of property instead of delete + defineProperty
|
|
967
|
-
options.sham - add a flag to not completely full polyfills
|
|
968
|
-
options.enumerable - export as enumerable property
|
|
969
|
-
options.dontCallGetSet - prevent calling a getter on target
|
|
970
|
-
options.name - the .name of the function if it does not match the key
|
|
971
|
-
*/
|
|
972
|
-
var _export = function (options, source) {
|
|
973
|
-
var TARGET = options.target;
|
|
974
|
-
var GLOBAL = options.global;
|
|
975
|
-
var STATIC = options.stat;
|
|
976
|
-
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
977
|
-
if (GLOBAL) {
|
|
978
|
-
target = global$2;
|
|
979
|
-
} else if (STATIC) {
|
|
980
|
-
target = global$2[TARGET] || defineGlobalProperty(TARGET, {});
|
|
981
|
-
} else {
|
|
982
|
-
target = global$2[TARGET] && global$2[TARGET].prototype;
|
|
983
|
-
}
|
|
984
|
-
if (target) for (key in source) {
|
|
985
|
-
sourceProperty = source[key];
|
|
986
|
-
if (options.dontCallGetSet) {
|
|
987
|
-
descriptor = getOwnPropertyDescriptor$1(target, key);
|
|
988
|
-
targetProperty = descriptor && descriptor.value;
|
|
989
|
-
} else targetProperty = target[key];
|
|
990
|
-
FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
|
|
991
|
-
// contained in target
|
|
992
|
-
if (!FORCED && targetProperty !== undefined) {
|
|
993
|
-
if (typeof sourceProperty == typeof targetProperty) continue;
|
|
994
|
-
copyConstructorProperties(sourceProperty, targetProperty);
|
|
995
|
-
}
|
|
996
|
-
// add a flag to not completely full polyfills
|
|
997
|
-
if (options.sham || (targetProperty && targetProperty.sham)) {
|
|
998
|
-
createNonEnumerableProperty$1(sourceProperty, 'sham', true);
|
|
999
|
-
}
|
|
1000
|
-
defineBuiltIn$2(target, key, sourceProperty, options);
|
|
1001
|
-
}
|
|
1002
|
-
};
|
|
1003
|
-
|
|
1004
|
-
var isPrototypeOf$1 = objectIsPrototypeOf;
|
|
1005
|
-
|
|
1006
|
-
var $TypeError$7 = TypeError;
|
|
1007
|
-
|
|
1008
|
-
var anInstance$1 = function (it, Prototype) {
|
|
1009
|
-
if (isPrototypeOf$1(Prototype, it)) return it;
|
|
1010
|
-
throw new $TypeError$7('Incorrect invocation');
|
|
1011
|
-
};
|
|
1012
|
-
|
|
1013
|
-
var fails$4 = fails$d;
|
|
1014
|
-
|
|
1015
|
-
var correctPrototypeGetter = !fails$4(function () {
|
|
1016
|
-
function F() { /* empty */ }
|
|
1017
|
-
F.prototype.constructor = null;
|
|
1018
|
-
// eslint-disable-next-line es/no-object-getprototypeof -- required for testing
|
|
1019
|
-
return Object.getPrototypeOf(new F()) !== F.prototype;
|
|
1020
|
-
});
|
|
1021
|
-
|
|
1022
|
-
var hasOwn$1 = hasOwnProperty_1;
|
|
1023
|
-
var isCallable$3 = isCallable$e;
|
|
1024
|
-
var toObject$1 = toObject$3;
|
|
1025
|
-
var sharedKey$1 = sharedKey$3;
|
|
1026
|
-
var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
|
|
1027
|
-
|
|
1028
|
-
var IE_PROTO$1 = sharedKey$1('IE_PROTO');
|
|
1029
|
-
var $Object$1 = Object;
|
|
1030
|
-
var ObjectPrototype = $Object$1.prototype;
|
|
1031
|
-
|
|
1032
|
-
// `Object.getPrototypeOf` method
|
|
1033
|
-
// https://tc39.es/ecma262/#sec-object.getprototypeof
|
|
1034
|
-
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
1035
|
-
var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf : function (O) {
|
|
1036
|
-
var object = toObject$1(O);
|
|
1037
|
-
if (hasOwn$1(object, IE_PROTO$1)) return object[IE_PROTO$1];
|
|
1038
|
-
var constructor = object.constructor;
|
|
1039
|
-
if (isCallable$3(constructor) && object instanceof constructor) {
|
|
1040
|
-
return constructor.prototype;
|
|
1041
|
-
} return object instanceof $Object$1 ? ObjectPrototype : null;
|
|
1042
|
-
};
|
|
1043
|
-
|
|
1044
|
-
var makeBuiltIn = makeBuiltInExports;
|
|
1045
|
-
var defineProperty = objectDefineProperty;
|
|
1046
|
-
|
|
1047
|
-
var defineBuiltInAccessor$1 = function (target, name, descriptor) {
|
|
1048
|
-
if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
|
|
1049
|
-
if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
|
|
1050
|
-
return defineProperty.f(target, name, descriptor);
|
|
1051
|
-
};
|
|
1052
|
-
|
|
1053
|
-
var DESCRIPTORS$3 = descriptors;
|
|
1054
|
-
var definePropertyModule$1 = objectDefineProperty;
|
|
1055
|
-
var createPropertyDescriptor = createPropertyDescriptor$3;
|
|
1056
|
-
|
|
1057
|
-
var createProperty$1 = function (object, key, value) {
|
|
1058
|
-
if (DESCRIPTORS$3) definePropertyModule$1.f(object, key, createPropertyDescriptor(0, value));
|
|
1059
|
-
else object[key] = value;
|
|
1060
|
-
};
|
|
1061
|
-
|
|
1062
|
-
var objectDefineProperties = {};
|
|
1063
|
-
|
|
1064
|
-
var internalObjectKeys = objectKeysInternal;
|
|
1065
|
-
var enumBugKeys$1 = enumBugKeys$3;
|
|
1066
|
-
|
|
1067
|
-
// `Object.keys` method
|
|
1068
|
-
// https://tc39.es/ecma262/#sec-object.keys
|
|
1069
|
-
// eslint-disable-next-line es/no-object-keys -- safe
|
|
1070
|
-
var objectKeys$1 = Object.keys || function keys(O) {
|
|
1071
|
-
return internalObjectKeys(O, enumBugKeys$1);
|
|
1072
|
-
};
|
|
1073
|
-
|
|
1074
|
-
var DESCRIPTORS$2 = descriptors;
|
|
1075
|
-
var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
|
|
1076
|
-
var definePropertyModule = objectDefineProperty;
|
|
1077
|
-
var anObject$c = anObject$f;
|
|
1078
|
-
var toIndexedObject = toIndexedObject$4;
|
|
1079
|
-
var objectKeys = objectKeys$1;
|
|
1080
|
-
|
|
1081
|
-
// `Object.defineProperties` method
|
|
1082
|
-
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
1083
|
-
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
1084
|
-
objectDefineProperties.f = DESCRIPTORS$2 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
1085
|
-
anObject$c(O);
|
|
1086
|
-
var props = toIndexedObject(Properties);
|
|
1087
|
-
var keys = objectKeys(Properties);
|
|
1088
|
-
var length = keys.length;
|
|
1089
|
-
var index = 0;
|
|
1090
|
-
var key;
|
|
1091
|
-
while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
|
|
1092
|
-
return O;
|
|
1093
|
-
};
|
|
1094
|
-
|
|
1095
|
-
var getBuiltIn$1 = getBuiltIn$4;
|
|
1096
|
-
|
|
1097
|
-
var html$1 = getBuiltIn$1('document', 'documentElement');
|
|
1098
|
-
|
|
1099
|
-
/* global ActiveXObject -- old IE, WSH */
|
|
1100
|
-
var anObject$b = anObject$f;
|
|
1101
|
-
var definePropertiesModule = objectDefineProperties;
|
|
1102
|
-
var enumBugKeys = enumBugKeys$3;
|
|
1103
|
-
var hiddenKeys = hiddenKeys$4;
|
|
1104
|
-
var html = html$1;
|
|
1105
|
-
var documentCreateElement = documentCreateElement$1;
|
|
1106
|
-
var sharedKey = sharedKey$3;
|
|
1107
|
-
|
|
1108
|
-
var GT = '>';
|
|
1109
|
-
var LT = '<';
|
|
1110
|
-
var PROTOTYPE = 'prototype';
|
|
1111
|
-
var SCRIPT = 'script';
|
|
1112
|
-
var IE_PROTO = sharedKey('IE_PROTO');
|
|
1113
|
-
|
|
1114
|
-
var EmptyConstructor = function () { /* empty */ };
|
|
1115
|
-
|
|
1116
|
-
var scriptTag = function (content) {
|
|
1117
|
-
return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
|
|
1118
|
-
};
|
|
1119
|
-
|
|
1120
|
-
// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
|
|
1121
|
-
var NullProtoObjectViaActiveX = function (activeXDocument) {
|
|
1122
|
-
activeXDocument.write(scriptTag(''));
|
|
1123
|
-
activeXDocument.close();
|
|
1124
|
-
var temp = activeXDocument.parentWindow.Object;
|
|
1125
|
-
activeXDocument = null; // avoid memory leak
|
|
1126
|
-
return temp;
|
|
1127
|
-
};
|
|
1128
|
-
|
|
1129
|
-
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
|
1130
|
-
var NullProtoObjectViaIFrame = function () {
|
|
1131
|
-
// Thrash, waste and sodomy: IE GC bug
|
|
1132
|
-
var iframe = documentCreateElement('iframe');
|
|
1133
|
-
var JS = 'java' + SCRIPT + ':';
|
|
1134
|
-
var iframeDocument;
|
|
1135
|
-
iframe.style.display = 'none';
|
|
1136
|
-
html.appendChild(iframe);
|
|
1137
|
-
// https://github.com/zloirock/core-js/issues/475
|
|
1138
|
-
iframe.src = String(JS);
|
|
1139
|
-
iframeDocument = iframe.contentWindow.document;
|
|
1140
|
-
iframeDocument.open();
|
|
1141
|
-
iframeDocument.write(scriptTag('document.F=Object'));
|
|
1142
|
-
iframeDocument.close();
|
|
1143
|
-
return iframeDocument.F;
|
|
1144
|
-
};
|
|
1145
|
-
|
|
1146
|
-
// Check for document.domain and active x support
|
|
1147
|
-
// No need to use active x approach when document.domain is not set
|
|
1148
|
-
// see https://github.com/es-shims/es5-shim/issues/150
|
|
1149
|
-
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
|
|
1150
|
-
// avoid IE GC bug
|
|
1151
|
-
var activeXDocument;
|
|
1152
|
-
var NullProtoObject = function () {
|
|
1153
|
-
try {
|
|
1154
|
-
activeXDocument = new ActiveXObject('htmlfile');
|
|
1155
|
-
} catch (error) { /* ignore */ }
|
|
1156
|
-
NullProtoObject = typeof document != 'undefined'
|
|
1157
|
-
? document.domain && activeXDocument
|
|
1158
|
-
? NullProtoObjectViaActiveX(activeXDocument) // old IE
|
|
1159
|
-
: NullProtoObjectViaIFrame()
|
|
1160
|
-
: NullProtoObjectViaActiveX(activeXDocument); // WSH
|
|
1161
|
-
var length = enumBugKeys.length;
|
|
1162
|
-
while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
|
|
1163
|
-
return NullProtoObject();
|
|
1164
|
-
};
|
|
1165
|
-
|
|
1166
|
-
hiddenKeys[IE_PROTO] = true;
|
|
1167
|
-
|
|
1168
|
-
// `Object.create` method
|
|
1169
|
-
// https://tc39.es/ecma262/#sec-object.create
|
|
1170
|
-
// eslint-disable-next-line es/no-object-create -- safe
|
|
1171
|
-
var objectCreate = Object.create || function create(O, Properties) {
|
|
1172
|
-
var result;
|
|
1173
|
-
if (O !== null) {
|
|
1174
|
-
EmptyConstructor[PROTOTYPE] = anObject$b(O);
|
|
1175
|
-
result = new EmptyConstructor();
|
|
1176
|
-
EmptyConstructor[PROTOTYPE] = null;
|
|
1177
|
-
// add "__proto__" for Object.getPrototypeOf polyfill
|
|
1178
|
-
result[IE_PROTO] = O;
|
|
1179
|
-
} else result = NullProtoObject();
|
|
1180
|
-
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
|
|
1181
|
-
};
|
|
1182
|
-
|
|
1183
|
-
var fails$3 = fails$d;
|
|
1184
|
-
var isCallable$2 = isCallable$e;
|
|
1185
|
-
var isObject = isObject$6;
|
|
1186
|
-
var getPrototypeOf$1 = objectGetPrototypeOf;
|
|
1187
|
-
var defineBuiltIn$1 = defineBuiltIn$3;
|
|
1188
|
-
var wellKnownSymbol$6 = wellKnownSymbol$8;
|
|
1189
|
-
|
|
1190
|
-
var ITERATOR$3 = wellKnownSymbol$6('iterator');
|
|
1191
|
-
var BUGGY_SAFARI_ITERATORS = false;
|
|
1192
|
-
|
|
1193
|
-
// `%IteratorPrototype%` object
|
|
1194
|
-
// https://tc39.es/ecma262/#sec-%iteratorprototype%-object
|
|
1195
|
-
var IteratorPrototype$2, PrototypeOfArrayIteratorPrototype, arrayIterator;
|
|
1196
|
-
|
|
1197
|
-
/* eslint-disable es/no-array-prototype-keys -- safe */
|
|
1198
|
-
if ([].keys) {
|
|
1199
|
-
arrayIterator = [].keys();
|
|
1200
|
-
// Safari 8 has buggy iterators w/o `next`
|
|
1201
|
-
if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
|
|
1202
|
-
else {
|
|
1203
|
-
PrototypeOfArrayIteratorPrototype = getPrototypeOf$1(getPrototypeOf$1(arrayIterator));
|
|
1204
|
-
if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype$2 = PrototypeOfArrayIteratorPrototype;
|
|
1205
|
-
}
|
|
1206
|
-
}
|
|
1207
|
-
|
|
1208
|
-
var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype$2) || fails$3(function () {
|
|
1209
|
-
var test = {};
|
|
1210
|
-
// FF44- legacy iterators case
|
|
1211
|
-
return IteratorPrototype$2[ITERATOR$3].call(test) !== test;
|
|
1212
|
-
});
|
|
1213
|
-
|
|
1214
|
-
if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$2 = {};
|
|
1215
|
-
|
|
1216
|
-
// `%IteratorPrototype%[@@iterator]()` method
|
|
1217
|
-
// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
|
|
1218
|
-
if (!isCallable$2(IteratorPrototype$2[ITERATOR$3])) {
|
|
1219
|
-
defineBuiltIn$1(IteratorPrototype$2, ITERATOR$3, function () {
|
|
1220
|
-
return this;
|
|
1221
|
-
});
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
|
-
var iteratorsCore = {
|
|
1225
|
-
IteratorPrototype: IteratorPrototype$2,
|
|
1226
|
-
BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
|
|
1227
|
-
};
|
|
1228
|
-
|
|
1229
|
-
var $$d = _export;
|
|
1230
|
-
var global$1 = global$b;
|
|
1231
|
-
var anInstance = anInstance$1;
|
|
1232
|
-
var anObject$a = anObject$f;
|
|
1233
|
-
var isCallable$1 = isCallable$e;
|
|
1234
|
-
var getPrototypeOf = objectGetPrototypeOf;
|
|
1235
|
-
var defineBuiltInAccessor = defineBuiltInAccessor$1;
|
|
1236
|
-
var createProperty = createProperty$1;
|
|
1237
|
-
var fails$2 = fails$d;
|
|
1238
|
-
var hasOwn = hasOwnProperty_1;
|
|
1239
|
-
var wellKnownSymbol$5 = wellKnownSymbol$8;
|
|
1240
|
-
var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
|
|
1241
|
-
var DESCRIPTORS$1 = descriptors;
|
|
1242
|
-
|
|
1243
|
-
var CONSTRUCTOR = 'constructor';
|
|
1244
|
-
var ITERATOR$2 = 'Iterator';
|
|
1245
|
-
var TO_STRING_TAG$3 = wellKnownSymbol$5('toStringTag');
|
|
1246
|
-
|
|
1247
|
-
var $TypeError$6 = TypeError;
|
|
1248
|
-
var NativeIterator = global$1[ITERATOR$2];
|
|
1249
|
-
|
|
1250
|
-
// FF56- have non-standard global helper `Iterator`
|
|
1251
|
-
var FORCED$1 = !isCallable$1(NativeIterator)
|
|
1252
|
-
|| NativeIterator.prototype !== IteratorPrototype$1
|
|
1253
|
-
// FF44- non-standard `Iterator` passes previous tests
|
|
1254
|
-
|| !fails$2(function () { NativeIterator({}); });
|
|
1255
|
-
|
|
1256
|
-
var IteratorConstructor = function Iterator() {
|
|
1257
|
-
anInstance(this, IteratorPrototype$1);
|
|
1258
|
-
if (getPrototypeOf(this) === IteratorPrototype$1) throw new $TypeError$6('Abstract class Iterator not directly constructable');
|
|
1259
|
-
};
|
|
1260
|
-
|
|
1261
|
-
var defineIteratorPrototypeAccessor = function (key, value) {
|
|
1262
|
-
if (DESCRIPTORS$1) {
|
|
1263
|
-
defineBuiltInAccessor(IteratorPrototype$1, key, {
|
|
1264
|
-
configurable: true,
|
|
1265
|
-
get: function () {
|
|
1266
|
-
return value;
|
|
1267
|
-
},
|
|
1268
|
-
set: function (replacement) {
|
|
1269
|
-
anObject$a(this);
|
|
1270
|
-
if (this === IteratorPrototype$1) throw new $TypeError$6("You can't redefine this property");
|
|
1271
|
-
if (hasOwn(this, key)) this[key] = replacement;
|
|
1272
|
-
else createProperty(this, key, replacement);
|
|
1273
|
-
}
|
|
1274
|
-
});
|
|
1275
|
-
} else IteratorPrototype$1[key] = value;
|
|
1276
|
-
};
|
|
1277
|
-
|
|
1278
|
-
if (!hasOwn(IteratorPrototype$1, TO_STRING_TAG$3)) defineIteratorPrototypeAccessor(TO_STRING_TAG$3, ITERATOR$2);
|
|
1279
|
-
|
|
1280
|
-
if (FORCED$1 || !hasOwn(IteratorPrototype$1, CONSTRUCTOR) || IteratorPrototype$1[CONSTRUCTOR] === Object) {
|
|
1281
|
-
defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
IteratorConstructor.prototype = IteratorPrototype$1;
|
|
1285
|
-
|
|
1286
|
-
// `Iterator` constructor
|
|
1287
|
-
// https://github.com/tc39/proposal-iterator-helpers
|
|
1288
|
-
$$d({ global: true, constructor: true, forced: FORCED$1 }, {
|
|
1289
|
-
Iterator: IteratorConstructor
|
|
1290
|
-
});
|
|
1291
|
-
|
|
1292
|
-
// `GetIteratorDirect(obj)` abstract operation
|
|
1293
|
-
// https://tc39.es/proposal-iterator-helpers/#sec-getiteratordirect
|
|
1294
|
-
var getIteratorDirect$6 = function (obj) {
|
|
1295
|
-
return {
|
|
1296
|
-
iterator: obj,
|
|
1297
|
-
next: obj.next,
|
|
1298
|
-
done: false
|
|
1299
|
-
};
|
|
1300
|
-
};
|
|
1301
|
-
|
|
1302
|
-
var defineBuiltIn = defineBuiltIn$3;
|
|
1303
|
-
|
|
1304
|
-
var defineBuiltIns$1 = function (target, src, options) {
|
|
1305
|
-
for (var key in src) defineBuiltIn(target, key, src[key], options);
|
|
1306
|
-
return target;
|
|
1307
|
-
};
|
|
1308
|
-
|
|
1309
|
-
// `CreateIterResultObject` abstract operation
|
|
1310
|
-
// https://tc39.es/ecma262/#sec-createiterresultobject
|
|
1311
|
-
var createIterResultObject$1 = function (value, done) {
|
|
1312
|
-
return { value: value, done: done };
|
|
1313
|
-
};
|
|
1314
|
-
|
|
1315
|
-
var call$7 = functionCall;
|
|
1316
|
-
var anObject$9 = anObject$f;
|
|
1317
|
-
var getMethod$2 = getMethod$4;
|
|
1318
|
-
|
|
1319
|
-
var iteratorClose$5 = function (iterator, kind, value) {
|
|
1320
|
-
var innerResult, innerError;
|
|
1321
|
-
anObject$9(iterator);
|
|
1322
|
-
try {
|
|
1323
|
-
innerResult = getMethod$2(iterator, 'return');
|
|
1324
|
-
if (!innerResult) {
|
|
1325
|
-
if (kind === 'throw') throw value;
|
|
1326
|
-
return value;
|
|
1327
|
-
}
|
|
1328
|
-
innerResult = call$7(innerResult, iterator);
|
|
1329
|
-
} catch (error) {
|
|
1330
|
-
innerError = true;
|
|
1331
|
-
innerResult = error;
|
|
1332
|
-
}
|
|
1333
|
-
if (kind === 'throw') throw value;
|
|
1334
|
-
if (innerError) throw innerResult;
|
|
1335
|
-
anObject$9(innerResult);
|
|
1336
|
-
return value;
|
|
1337
|
-
};
|
|
1338
|
-
|
|
1339
|
-
var call$6 = functionCall;
|
|
1340
|
-
var create = objectCreate;
|
|
1341
|
-
var createNonEnumerableProperty = createNonEnumerableProperty$3;
|
|
1342
|
-
var defineBuiltIns = defineBuiltIns$1;
|
|
1343
|
-
var wellKnownSymbol$4 = wellKnownSymbol$8;
|
|
1344
|
-
var InternalStateModule = internalState;
|
|
1345
|
-
var getMethod$1 = getMethod$4;
|
|
1346
|
-
var IteratorPrototype = iteratorsCore.IteratorPrototype;
|
|
1347
|
-
var createIterResultObject = createIterResultObject$1;
|
|
1348
|
-
var iteratorClose$4 = iteratorClose$5;
|
|
1349
|
-
|
|
1350
|
-
var TO_STRING_TAG$2 = wellKnownSymbol$4('toStringTag');
|
|
1351
|
-
var ITERATOR_HELPER = 'IteratorHelper';
|
|
1352
|
-
var WRAP_FOR_VALID_ITERATOR = 'WrapForValidIterator';
|
|
1353
|
-
var setInternalState = InternalStateModule.set;
|
|
1354
|
-
|
|
1355
|
-
var createIteratorProxyPrototype = function (IS_ITERATOR) {
|
|
1356
|
-
var getInternalState = InternalStateModule.getterFor(IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER);
|
|
1357
|
-
|
|
1358
|
-
return defineBuiltIns(create(IteratorPrototype), {
|
|
1359
|
-
next: function next() {
|
|
1360
|
-
var state = getInternalState(this);
|
|
1361
|
-
// for simplification:
|
|
1362
|
-
// for `%WrapForValidIteratorPrototype%.next` our `nextHandler` returns `IterResultObject`
|
|
1363
|
-
// for `%IteratorHelperPrototype%.next` - just a value
|
|
1364
|
-
if (IS_ITERATOR) return state.nextHandler();
|
|
1365
|
-
try {
|
|
1366
|
-
var result = state.done ? undefined : state.nextHandler();
|
|
1367
|
-
return createIterResultObject(result, state.done);
|
|
1368
|
-
} catch (error) {
|
|
1369
|
-
state.done = true;
|
|
1370
|
-
throw error;
|
|
1371
|
-
}
|
|
1372
|
-
},
|
|
1373
|
-
'return': function () {
|
|
1374
|
-
var state = getInternalState(this);
|
|
1375
|
-
var iterator = state.iterator;
|
|
1376
|
-
state.done = true;
|
|
1377
|
-
if (IS_ITERATOR) {
|
|
1378
|
-
var returnMethod = getMethod$1(iterator, 'return');
|
|
1379
|
-
return returnMethod ? call$6(returnMethod, iterator) : createIterResultObject(undefined, true);
|
|
1380
|
-
}
|
|
1381
|
-
if (state.inner) try {
|
|
1382
|
-
iteratorClose$4(state.inner.iterator, 'normal');
|
|
1383
|
-
} catch (error) {
|
|
1384
|
-
return iteratorClose$4(iterator, 'throw', error);
|
|
1385
|
-
}
|
|
1386
|
-
iteratorClose$4(iterator, 'normal');
|
|
1387
|
-
return createIterResultObject(undefined, true);
|
|
1388
|
-
}
|
|
1389
|
-
});
|
|
1390
|
-
};
|
|
1391
|
-
|
|
1392
|
-
var WrapForValidIteratorPrototype = createIteratorProxyPrototype(true);
|
|
1393
|
-
var IteratorHelperPrototype = createIteratorProxyPrototype(false);
|
|
1394
|
-
|
|
1395
|
-
createNonEnumerableProperty(IteratorHelperPrototype, TO_STRING_TAG$2, 'Iterator Helper');
|
|
1396
|
-
|
|
1397
|
-
var iteratorCreateProxy = function (nextHandler, IS_ITERATOR) {
|
|
1398
|
-
var IteratorProxy = function Iterator(record, state) {
|
|
1399
|
-
if (state) {
|
|
1400
|
-
state.iterator = record.iterator;
|
|
1401
|
-
state.next = record.next;
|
|
1402
|
-
} else state = record;
|
|
1403
|
-
state.type = IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER;
|
|
1404
|
-
state.nextHandler = nextHandler;
|
|
1405
|
-
state.counter = 0;
|
|
1406
|
-
state.done = false;
|
|
1407
|
-
setInternalState(this, state);
|
|
1408
|
-
};
|
|
1409
|
-
|
|
1410
|
-
IteratorProxy.prototype = IS_ITERATOR ? WrapForValidIteratorPrototype : IteratorHelperPrototype;
|
|
1411
|
-
|
|
1412
|
-
return IteratorProxy;
|
|
1413
|
-
};
|
|
1414
|
-
|
|
1415
|
-
var anObject$8 = anObject$f;
|
|
1416
|
-
var iteratorClose$3 = iteratorClose$5;
|
|
1417
|
-
|
|
1418
|
-
// call something on iterator step with safe closing on error
|
|
1419
|
-
var callWithSafeIterationClosing$2 = function (iterator, fn, value, ENTRIES) {
|
|
1420
|
-
try {
|
|
1421
|
-
return ENTRIES ? fn(anObject$8(value)[0], value[1]) : fn(value);
|
|
1422
|
-
} catch (error) {
|
|
1423
|
-
iteratorClose$3(iterator, 'throw', error);
|
|
1424
|
-
}
|
|
1425
|
-
};
|
|
1426
|
-
|
|
1427
|
-
var $$c = _export;
|
|
1428
|
-
var call$5 = functionCall;
|
|
1429
|
-
var aCallable$8 = aCallable$a;
|
|
1430
|
-
var anObject$7 = anObject$f;
|
|
1431
|
-
var getIteratorDirect$5 = getIteratorDirect$6;
|
|
1432
|
-
var createIteratorProxy$1 = iteratorCreateProxy;
|
|
1433
|
-
var callWithSafeIterationClosing$1 = callWithSafeIterationClosing$2;
|
|
1434
|
-
var IS_PURE$1 = isPure;
|
|
1435
|
-
|
|
1436
|
-
var IteratorProxy$1 = createIteratorProxy$1(function () {
|
|
1437
|
-
var iterator = this.iterator;
|
|
1438
|
-
var predicate = this.predicate;
|
|
1439
|
-
var next = this.next;
|
|
1440
|
-
var result, done, value;
|
|
1441
|
-
while (true) {
|
|
1442
|
-
result = anObject$7(call$5(next, iterator));
|
|
1443
|
-
done = this.done = !!result.done;
|
|
1444
|
-
if (done) return;
|
|
1445
|
-
value = result.value;
|
|
1446
|
-
if (callWithSafeIterationClosing$1(iterator, predicate, [value, this.counter++], true)) return value;
|
|
1447
|
-
}
|
|
1448
|
-
});
|
|
1449
|
-
|
|
1450
|
-
// `Iterator.prototype.filter` method
|
|
1451
|
-
// https://github.com/tc39/proposal-iterator-helpers
|
|
1452
|
-
$$c({ target: 'Iterator', proto: true, real: true, forced: IS_PURE$1 }, {
|
|
1453
|
-
filter: function filter(predicate) {
|
|
1454
|
-
anObject$7(this);
|
|
1455
|
-
aCallable$8(predicate);
|
|
1456
|
-
return new IteratorProxy$1(getIteratorDirect$5(this), {
|
|
1457
|
-
predicate: predicate
|
|
1458
|
-
});
|
|
1459
|
-
}
|
|
1460
|
-
});
|
|
1461
|
-
|
|
1462
|
-
var classofRaw$1 = classofRaw$2;
|
|
1463
|
-
var uncurryThis$4 = functionUncurryThis;
|
|
1464
|
-
|
|
1465
|
-
var functionUncurryThisClause = function (fn) {
|
|
1466
|
-
// Nashorn bug:
|
|
1467
|
-
// https://github.com/zloirock/core-js/issues/1128
|
|
1468
|
-
// https://github.com/zloirock/core-js/issues/1130
|
|
1469
|
-
if (classofRaw$1(fn) === 'Function') return uncurryThis$4(fn);
|
|
1470
|
-
};
|
|
1471
|
-
|
|
1472
|
-
var uncurryThis$3 = functionUncurryThisClause;
|
|
1473
|
-
var aCallable$7 = aCallable$a;
|
|
1474
|
-
var NATIVE_BIND = functionBindNative;
|
|
1475
|
-
|
|
1476
|
-
var bind$1 = uncurryThis$3(uncurryThis$3.bind);
|
|
1477
|
-
|
|
1478
|
-
// optional / simple context binding
|
|
1479
|
-
var functionBindContext = function (fn, that) {
|
|
1480
|
-
aCallable$7(fn);
|
|
1481
|
-
return that === undefined ? fn : NATIVE_BIND ? bind$1(fn, that) : function (/* ...args */) {
|
|
1482
|
-
return fn.apply(that, arguments);
|
|
1483
|
-
};
|
|
1484
|
-
};
|
|
1485
|
-
|
|
1486
|
-
var iterators = {};
|
|
1487
|
-
|
|
1488
|
-
var wellKnownSymbol$3 = wellKnownSymbol$8;
|
|
1489
|
-
var Iterators$1 = iterators;
|
|
1490
|
-
|
|
1491
|
-
var ITERATOR$1 = wellKnownSymbol$3('iterator');
|
|
1492
|
-
var ArrayPrototype = Array.prototype;
|
|
1493
|
-
|
|
1494
|
-
// check on default Array iterator
|
|
1495
|
-
var isArrayIteratorMethod$1 = function (it) {
|
|
1496
|
-
return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$1] === it);
|
|
1497
|
-
};
|
|
1498
|
-
|
|
1499
|
-
var wellKnownSymbol$2 = wellKnownSymbol$8;
|
|
1500
|
-
|
|
1501
|
-
var TO_STRING_TAG$1 = wellKnownSymbol$2('toStringTag');
|
|
1502
|
-
var test = {};
|
|
1503
|
-
|
|
1504
|
-
test[TO_STRING_TAG$1] = 'z';
|
|
1505
|
-
|
|
1506
|
-
var toStringTagSupport = String(test) === '[object z]';
|
|
1507
|
-
|
|
1508
|
-
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1509
|
-
var isCallable = isCallable$e;
|
|
1510
|
-
var classofRaw = classofRaw$2;
|
|
1511
|
-
var wellKnownSymbol$1 = wellKnownSymbol$8;
|
|
1512
|
-
|
|
1513
|
-
var TO_STRING_TAG = wellKnownSymbol$1('toStringTag');
|
|
1514
|
-
var $Object = Object;
|
|
1515
|
-
|
|
1516
|
-
// ES3 wrong here
|
|
1517
|
-
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
|
|
1518
|
-
|
|
1519
|
-
// fallback for IE11 Script Access Denied error
|
|
1520
|
-
var tryGet = function (it, key) {
|
|
1521
|
-
try {
|
|
1522
|
-
return it[key];
|
|
1523
|
-
} catch (error) { /* empty */ }
|
|
1524
|
-
};
|
|
1525
|
-
|
|
1526
|
-
// getting tag from ES6+ `Object.prototype.toString`
|
|
1527
|
-
var classof$2 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
1528
|
-
var O, tag, result;
|
|
1529
|
-
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
1530
|
-
// @@toStringTag case
|
|
1531
|
-
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
1532
|
-
// builtinTag case
|
|
1533
|
-
: CORRECT_ARGUMENTS ? classofRaw(O)
|
|
1534
|
-
// ES3 arguments fallback
|
|
1535
|
-
: (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
|
|
1536
|
-
};
|
|
1537
|
-
|
|
1538
|
-
var classof$1 = classof$2;
|
|
1539
|
-
var getMethod = getMethod$4;
|
|
1540
|
-
var isNullOrUndefined = isNullOrUndefined$3;
|
|
1541
|
-
var Iterators = iterators;
|
|
1542
|
-
var wellKnownSymbol = wellKnownSymbol$8;
|
|
1543
|
-
|
|
1544
|
-
var ITERATOR = wellKnownSymbol('iterator');
|
|
1545
|
-
|
|
1546
|
-
var getIteratorMethod$2 = function (it) {
|
|
1547
|
-
if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR)
|
|
1548
|
-
|| getMethod(it, '@@iterator')
|
|
1549
|
-
|| Iterators[classof$1(it)];
|
|
1550
|
-
};
|
|
1551
|
-
|
|
1552
|
-
var call$4 = functionCall;
|
|
1553
|
-
var aCallable$6 = aCallable$a;
|
|
1554
|
-
var anObject$6 = anObject$f;
|
|
1555
|
-
var tryToString$1 = tryToString$3;
|
|
1556
|
-
var getIteratorMethod$1 = getIteratorMethod$2;
|
|
1557
|
-
|
|
1558
|
-
var $TypeError$5 = TypeError;
|
|
1559
|
-
|
|
1560
|
-
var getIterator$1 = function (argument, usingIterator) {
|
|
1561
|
-
var iteratorMethod = arguments.length < 2 ? getIteratorMethod$1(argument) : usingIterator;
|
|
1562
|
-
if (aCallable$6(iteratorMethod)) return anObject$6(call$4(iteratorMethod, argument));
|
|
1563
|
-
throw new $TypeError$5(tryToString$1(argument) + ' is not iterable');
|
|
1564
|
-
};
|
|
1565
|
-
|
|
1566
|
-
var bind = functionBindContext;
|
|
1567
|
-
var call$3 = functionCall;
|
|
1568
|
-
var anObject$5 = anObject$f;
|
|
1569
|
-
var tryToString = tryToString$3;
|
|
1570
|
-
var isArrayIteratorMethod = isArrayIteratorMethod$1;
|
|
1571
|
-
var lengthOfArrayLike$1 = lengthOfArrayLike$3;
|
|
1572
|
-
var isPrototypeOf = objectIsPrototypeOf;
|
|
1573
|
-
var getIterator = getIterator$1;
|
|
1574
|
-
var getIteratorMethod = getIteratorMethod$2;
|
|
1575
|
-
var iteratorClose$2 = iteratorClose$5;
|
|
1576
|
-
|
|
1577
|
-
var $TypeError$4 = TypeError;
|
|
1578
|
-
|
|
1579
|
-
var Result = function (stopped, result) {
|
|
1580
|
-
this.stopped = stopped;
|
|
1581
|
-
this.result = result;
|
|
1582
|
-
};
|
|
1583
|
-
|
|
1584
|
-
var ResultPrototype = Result.prototype;
|
|
1585
|
-
|
|
1586
|
-
var iterate$6 = function (iterable, unboundFunction, options) {
|
|
1587
|
-
var that = options && options.that;
|
|
1588
|
-
var AS_ENTRIES = !!(options && options.AS_ENTRIES);
|
|
1589
|
-
var IS_RECORD = !!(options && options.IS_RECORD);
|
|
1590
|
-
var IS_ITERATOR = !!(options && options.IS_ITERATOR);
|
|
1591
|
-
var INTERRUPTED = !!(options && options.INTERRUPTED);
|
|
1592
|
-
var fn = bind(unboundFunction, that);
|
|
1593
|
-
var iterator, iterFn, index, length, result, next, step;
|
|
1594
|
-
|
|
1595
|
-
var stop = function (condition) {
|
|
1596
|
-
if (iterator) iteratorClose$2(iterator, 'normal', condition);
|
|
1597
|
-
return new Result(true, condition);
|
|
1598
|
-
};
|
|
1599
|
-
|
|
1600
|
-
var callFn = function (value) {
|
|
1601
|
-
if (AS_ENTRIES) {
|
|
1602
|
-
anObject$5(value);
|
|
1603
|
-
return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
|
|
1604
|
-
} return INTERRUPTED ? fn(value, stop) : fn(value);
|
|
1605
|
-
};
|
|
1606
|
-
|
|
1607
|
-
if (IS_RECORD) {
|
|
1608
|
-
iterator = iterable.iterator;
|
|
1609
|
-
} else if (IS_ITERATOR) {
|
|
1610
|
-
iterator = iterable;
|
|
1611
|
-
} else {
|
|
1612
|
-
iterFn = getIteratorMethod(iterable);
|
|
1613
|
-
if (!iterFn) throw new $TypeError$4(tryToString(iterable) + ' is not iterable');
|
|
1614
|
-
// optimisation for array iterators
|
|
1615
|
-
if (isArrayIteratorMethod(iterFn)) {
|
|
1616
|
-
for (index = 0, length = lengthOfArrayLike$1(iterable); length > index; index++) {
|
|
1617
|
-
result = callFn(iterable[index]);
|
|
1618
|
-
if (result && isPrototypeOf(ResultPrototype, result)) return result;
|
|
1619
|
-
} return new Result(false);
|
|
1620
|
-
}
|
|
1621
|
-
iterator = getIterator(iterable, iterFn);
|
|
1622
|
-
}
|
|
1623
|
-
|
|
1624
|
-
next = IS_RECORD ? iterable.next : iterator.next;
|
|
1625
|
-
while (!(step = call$3(next, iterator)).done) {
|
|
1626
|
-
try {
|
|
1627
|
-
result = callFn(step.value);
|
|
1628
|
-
} catch (error) {
|
|
1629
|
-
iteratorClose$2(iterator, 'throw', error);
|
|
1630
|
-
}
|
|
1631
|
-
if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
|
|
1632
|
-
} return new Result(false);
|
|
1633
|
-
};
|
|
1634
|
-
|
|
1635
|
-
var $$b = _export;
|
|
1636
|
-
var iterate$5 = iterate$6;
|
|
1637
|
-
var aCallable$5 = aCallable$a;
|
|
1638
|
-
var anObject$4 = anObject$f;
|
|
1639
|
-
var getIteratorDirect$4 = getIteratorDirect$6;
|
|
1640
|
-
|
|
1641
|
-
// `Iterator.prototype.forEach` method
|
|
1642
|
-
// https://github.com/tc39/proposal-iterator-helpers
|
|
1643
|
-
$$b({ target: 'Iterator', proto: true, real: true }, {
|
|
1644
|
-
forEach: function forEach(fn) {
|
|
1645
|
-
anObject$4(this);
|
|
1646
|
-
aCallable$5(fn);
|
|
1647
|
-
var record = getIteratorDirect$4(this);
|
|
1648
|
-
var counter = 0;
|
|
1649
|
-
iterate$5(record, function (value) {
|
|
1650
|
-
fn(value, counter++);
|
|
1651
|
-
}, { IS_RECORD: true });
|
|
1652
|
-
}
|
|
1653
|
-
});
|
|
1654
|
-
|
|
1655
|
-
var call$2 = functionCall;
|
|
1656
|
-
var aCallable$4 = aCallable$a;
|
|
1657
|
-
var anObject$3 = anObject$f;
|
|
1658
|
-
var getIteratorDirect$3 = getIteratorDirect$6;
|
|
1659
|
-
var createIteratorProxy = iteratorCreateProxy;
|
|
1660
|
-
var callWithSafeIterationClosing = callWithSafeIterationClosing$2;
|
|
1661
|
-
|
|
1662
|
-
var IteratorProxy = createIteratorProxy(function () {
|
|
1663
|
-
var iterator = this.iterator;
|
|
1664
|
-
var result = anObject$3(call$2(this.next, iterator));
|
|
1665
|
-
var done = this.done = !!result.done;
|
|
1666
|
-
if (!done) return callWithSafeIterationClosing(iterator, this.mapper, [result.value, this.counter++], true);
|
|
1667
|
-
});
|
|
1668
|
-
|
|
1669
|
-
// `Iterator.prototype.map` method
|
|
1670
|
-
// https://github.com/tc39/proposal-iterator-helpers
|
|
1671
|
-
var iteratorMap = function map(mapper) {
|
|
1672
|
-
anObject$3(this);
|
|
1673
|
-
aCallable$4(mapper);
|
|
1674
|
-
return new IteratorProxy(getIteratorDirect$3(this), {
|
|
1675
|
-
mapper: mapper
|
|
1676
|
-
});
|
|
1677
|
-
};
|
|
1678
|
-
|
|
1679
|
-
var $$a = _export;
|
|
1680
|
-
var map = iteratorMap;
|
|
1681
|
-
var IS_PURE = isPure;
|
|
1682
|
-
|
|
1683
|
-
// `Iterator.prototype.map` method
|
|
1684
|
-
// https://github.com/tc39/proposal-iterator-helpers
|
|
1685
|
-
$$a({ target: 'Iterator', proto: true, real: true, forced: IS_PURE }, {
|
|
1686
|
-
map: map
|
|
1687
|
-
});
|
|
1688
|
-
|
|
1689
|
-
var uncurryThis$2 = functionUncurryThis;
|
|
1690
|
-
|
|
1691
|
-
// eslint-disable-next-line es/no-set -- safe
|
|
1692
|
-
var SetPrototype$1 = Set.prototype;
|
|
1693
|
-
|
|
1694
|
-
var setHelpers = {
|
|
1695
|
-
// eslint-disable-next-line es/no-set -- safe
|
|
1696
|
-
Set: Set,
|
|
1697
|
-
add: uncurryThis$2(SetPrototype$1.add),
|
|
1698
|
-
has: uncurryThis$2(SetPrototype$1.has),
|
|
1699
|
-
remove: uncurryThis$2(SetPrototype$1['delete']),
|
|
1700
|
-
proto: SetPrototype$1
|
|
1701
|
-
};
|
|
1702
|
-
|
|
1703
|
-
var has$5 = setHelpers.has;
|
|
1704
|
-
|
|
1705
|
-
// Perform ? RequireInternalSlot(M, [[SetData]])
|
|
1706
|
-
var aSet$7 = function (it) {
|
|
1707
|
-
has$5(it);
|
|
1708
|
-
return it;
|
|
1709
|
-
};
|
|
1710
|
-
|
|
1711
|
-
var call$1 = functionCall;
|
|
1712
|
-
|
|
1713
|
-
var iterateSimple$7 = function (record, fn, ITERATOR_INSTEAD_OF_RECORD) {
|
|
1714
|
-
var iterator = ITERATOR_INSTEAD_OF_RECORD ? record : record.iterator;
|
|
1715
|
-
var next = record.next;
|
|
1716
|
-
var step, result;
|
|
1717
|
-
while (!(step = call$1(next, iterator)).done) {
|
|
1718
|
-
result = fn(step.value);
|
|
1719
|
-
if (result !== undefined) return result;
|
|
1720
|
-
}
|
|
1721
|
-
};
|
|
1722
|
-
|
|
1723
|
-
var uncurryThis$1 = functionUncurryThis;
|
|
1724
|
-
var iterateSimple$6 = iterateSimple$7;
|
|
1725
|
-
var SetHelpers$5 = setHelpers;
|
|
1726
|
-
|
|
1727
|
-
var Set$3 = SetHelpers$5.Set;
|
|
1728
|
-
var SetPrototype = SetHelpers$5.proto;
|
|
1729
|
-
var forEach = uncurryThis$1(SetPrototype.forEach);
|
|
1730
|
-
var keys = uncurryThis$1(SetPrototype.keys);
|
|
1731
|
-
var next = keys(new Set$3()).next;
|
|
1732
|
-
|
|
1733
|
-
var setIterate = function (set, fn, interruptible) {
|
|
1734
|
-
return interruptible ? iterateSimple$6({ iterator: keys(set), next: next }, fn) : forEach(set, fn);
|
|
1735
|
-
};
|
|
1736
|
-
|
|
1737
|
-
var SetHelpers$4 = setHelpers;
|
|
1738
|
-
var iterate$4 = setIterate;
|
|
1739
|
-
|
|
1740
|
-
var Set$2 = SetHelpers$4.Set;
|
|
1741
|
-
var add$3 = SetHelpers$4.add;
|
|
1742
|
-
|
|
1743
|
-
var setClone = function (set) {
|
|
1744
|
-
var result = new Set$2();
|
|
1745
|
-
iterate$4(set, function (it) {
|
|
1746
|
-
add$3(result, it);
|
|
1747
|
-
});
|
|
1748
|
-
return result;
|
|
1749
|
-
};
|
|
1750
|
-
|
|
1751
|
-
var uncurryThis = functionUncurryThis;
|
|
1752
|
-
var aCallable$3 = aCallable$a;
|
|
1753
|
-
|
|
1754
|
-
var functionUncurryThisAccessor = function (object, key, method) {
|
|
1755
|
-
try {
|
|
1756
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1757
|
-
return uncurryThis(aCallable$3(Object.getOwnPropertyDescriptor(object, key)[method]));
|
|
1758
|
-
} catch (error) { /* empty */ }
|
|
1759
|
-
};
|
|
1760
|
-
|
|
1761
|
-
var uncurryThisAccessor = functionUncurryThisAccessor;
|
|
1762
|
-
var SetHelpers$3 = setHelpers;
|
|
1763
|
-
|
|
1764
|
-
var setSize = uncurryThisAccessor(SetHelpers$3.proto, 'size', 'get') || function (set) {
|
|
1765
|
-
return set.size;
|
|
1766
|
-
};
|
|
1767
|
-
|
|
1768
|
-
var aCallable$2 = aCallable$a;
|
|
1769
|
-
var anObject$2 = anObject$f;
|
|
1770
|
-
var call = functionCall;
|
|
1771
|
-
var toIntegerOrInfinity = toIntegerOrInfinity$3;
|
|
1772
|
-
var getIteratorDirect$2 = getIteratorDirect$6;
|
|
1773
|
-
|
|
1774
|
-
var INVALID_SIZE = 'Invalid size';
|
|
1775
|
-
var $RangeError = RangeError;
|
|
1776
|
-
var $TypeError$3 = TypeError;
|
|
1777
|
-
var max = Math.max;
|
|
1778
|
-
|
|
1779
|
-
var SetRecord = function (set, intSize) {
|
|
1780
|
-
this.set = set;
|
|
1781
|
-
this.size = max(intSize, 0);
|
|
1782
|
-
this.has = aCallable$2(set.has);
|
|
1783
|
-
this.keys = aCallable$2(set.keys);
|
|
1784
|
-
};
|
|
1785
|
-
|
|
1786
|
-
SetRecord.prototype = {
|
|
1787
|
-
getIterator: function () {
|
|
1788
|
-
return getIteratorDirect$2(anObject$2(call(this.keys, this.set)));
|
|
1789
|
-
},
|
|
1790
|
-
includes: function (it) {
|
|
1791
|
-
return call(this.has, this.set, it);
|
|
1792
|
-
}
|
|
1793
|
-
};
|
|
1794
|
-
|
|
1795
|
-
// `GetSetRecord` abstract operation
|
|
1796
|
-
// https://tc39.es/proposal-set-methods/#sec-getsetrecord
|
|
1797
|
-
var getSetRecord$7 = function (obj) {
|
|
1798
|
-
anObject$2(obj);
|
|
1799
|
-
var numSize = +obj.size;
|
|
1800
|
-
// NOTE: If size is undefined, then numSize will be NaN
|
|
1801
|
-
// eslint-disable-next-line no-self-compare -- NaN check
|
|
1802
|
-
if (numSize !== numSize) throw new $TypeError$3(INVALID_SIZE);
|
|
1803
|
-
var intSize = toIntegerOrInfinity(numSize);
|
|
1804
|
-
if (intSize < 0) throw new $RangeError(INVALID_SIZE);
|
|
1805
|
-
return new SetRecord(obj, intSize);
|
|
1806
|
-
};
|
|
1807
|
-
|
|
1808
|
-
var aSet$6 = aSet$7;
|
|
1809
|
-
var SetHelpers$2 = setHelpers;
|
|
1810
|
-
var clone$2 = setClone;
|
|
1811
|
-
var size$4 = setSize;
|
|
1812
|
-
var getSetRecord$6 = getSetRecord$7;
|
|
1813
|
-
var iterateSet$2 = setIterate;
|
|
1814
|
-
var iterateSimple$5 = iterateSimple$7;
|
|
1815
|
-
|
|
1816
|
-
var has$4 = SetHelpers$2.has;
|
|
1817
|
-
var remove$1 = SetHelpers$2.remove;
|
|
1818
|
-
|
|
1819
|
-
// `Set.prototype.difference` method
|
|
1820
|
-
// https://github.com/tc39/proposal-set-methods
|
|
1821
|
-
var setDifference = function difference(other) {
|
|
1822
|
-
var O = aSet$6(this);
|
|
1823
|
-
var otherRec = getSetRecord$6(other);
|
|
1824
|
-
var result = clone$2(O);
|
|
1825
|
-
if (size$4(O) <= otherRec.size) iterateSet$2(O, function (e) {
|
|
1826
|
-
if (otherRec.includes(e)) remove$1(result, e);
|
|
1827
|
-
});
|
|
1828
|
-
else iterateSimple$5(otherRec.getIterator(), function (e) {
|
|
1829
|
-
if (has$4(O, e)) remove$1(result, e);
|
|
1830
|
-
});
|
|
1831
|
-
return result;
|
|
1832
|
-
};
|
|
1833
|
-
|
|
1834
|
-
var getBuiltIn = getBuiltIn$4;
|
|
1835
|
-
|
|
1836
|
-
var createSetLike = function (size) {
|
|
1837
|
-
return {
|
|
1838
|
-
size: size,
|
|
1839
|
-
has: function () {
|
|
1840
|
-
return false;
|
|
1841
|
-
},
|
|
1842
|
-
keys: function () {
|
|
1843
|
-
return {
|
|
1844
|
-
next: function () {
|
|
1845
|
-
return { done: true };
|
|
1846
|
-
}
|
|
1847
|
-
};
|
|
1848
|
-
}
|
|
1849
|
-
};
|
|
1850
|
-
};
|
|
1851
|
-
|
|
1852
|
-
var setMethodAcceptSetLike$7 = function (name) {
|
|
1853
|
-
var Set = getBuiltIn('Set');
|
|
1854
|
-
try {
|
|
1855
|
-
new Set()[name](createSetLike(0));
|
|
1856
|
-
try {
|
|
1857
|
-
// late spec change, early WebKit ~ Safari 17.0 beta implementation does not pass it
|
|
1858
|
-
// https://github.com/tc39/proposal-set-methods/pull/88
|
|
1859
|
-
new Set()[name](createSetLike(-1));
|
|
1860
|
-
return false;
|
|
1861
|
-
} catch (error2) {
|
|
1862
|
-
return true;
|
|
1863
|
-
}
|
|
1864
|
-
} catch (error) {
|
|
1865
|
-
return false;
|
|
1866
|
-
}
|
|
1867
|
-
};
|
|
1868
|
-
|
|
1869
|
-
var $$9 = _export;
|
|
1870
|
-
var difference = setDifference;
|
|
1871
|
-
var setMethodAcceptSetLike$6 = setMethodAcceptSetLike$7;
|
|
1872
|
-
|
|
1873
|
-
// `Set.prototype.difference` method
|
|
1874
|
-
// https://github.com/tc39/proposal-set-methods
|
|
1875
|
-
$$9({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$6('difference') }, {
|
|
1876
|
-
difference: difference
|
|
1877
|
-
});
|
|
1878
|
-
|
|
1879
|
-
var aSet$5 = aSet$7;
|
|
1880
|
-
var SetHelpers$1 = setHelpers;
|
|
1881
|
-
var size$3 = setSize;
|
|
1882
|
-
var getSetRecord$5 = getSetRecord$7;
|
|
1883
|
-
var iterateSet$1 = setIterate;
|
|
1884
|
-
var iterateSimple$4 = iterateSimple$7;
|
|
1885
|
-
|
|
1886
|
-
var Set$1 = SetHelpers$1.Set;
|
|
1887
|
-
var add$2 = SetHelpers$1.add;
|
|
1888
|
-
var has$3 = SetHelpers$1.has;
|
|
1889
|
-
|
|
1890
|
-
// `Set.prototype.intersection` method
|
|
1891
|
-
// https://github.com/tc39/proposal-set-methods
|
|
1892
|
-
var setIntersection = function intersection(other) {
|
|
1893
|
-
var O = aSet$5(this);
|
|
1894
|
-
var otherRec = getSetRecord$5(other);
|
|
1895
|
-
var result = new Set$1();
|
|
1896
|
-
|
|
1897
|
-
if (size$3(O) > otherRec.size) {
|
|
1898
|
-
iterateSimple$4(otherRec.getIterator(), function (e) {
|
|
1899
|
-
if (has$3(O, e)) add$2(result, e);
|
|
1900
|
-
});
|
|
1901
|
-
} else {
|
|
1902
|
-
iterateSet$1(O, function (e) {
|
|
1903
|
-
if (otherRec.includes(e)) add$2(result, e);
|
|
1904
|
-
});
|
|
1905
|
-
}
|
|
1906
|
-
|
|
1907
|
-
return result;
|
|
1908
|
-
};
|
|
1909
|
-
|
|
1910
|
-
var $$8 = _export;
|
|
1911
|
-
var fails$1 = fails$d;
|
|
1912
|
-
var intersection = setIntersection;
|
|
1913
|
-
var setMethodAcceptSetLike$5 = setMethodAcceptSetLike$7;
|
|
1914
|
-
|
|
1915
|
-
var INCORRECT = !setMethodAcceptSetLike$5('intersection') || fails$1(function () {
|
|
1916
|
-
// eslint-disable-next-line es/no-array-from, es/no-set -- testing
|
|
1917
|
-
return String(Array.from(new Set([1, 2, 3]).intersection(new Set([3, 2])))) !== '3,2';
|
|
1918
|
-
});
|
|
1919
|
-
|
|
1920
|
-
// `Set.prototype.intersection` method
|
|
1921
|
-
// https://github.com/tc39/proposal-set-methods
|
|
1922
|
-
$$8({ target: 'Set', proto: true, real: true, forced: INCORRECT }, {
|
|
1923
|
-
intersection: intersection
|
|
1924
|
-
});
|
|
1925
|
-
|
|
1926
|
-
var aSet$4 = aSet$7;
|
|
1927
|
-
var has$2 = setHelpers.has;
|
|
1928
|
-
var size$2 = setSize;
|
|
1929
|
-
var getSetRecord$4 = getSetRecord$7;
|
|
1930
|
-
var iterateSet = setIterate;
|
|
1931
|
-
var iterateSimple$3 = iterateSimple$7;
|
|
1932
|
-
var iteratorClose$1 = iteratorClose$5;
|
|
1933
|
-
|
|
1934
|
-
// `Set.prototype.isDisjointFrom` method
|
|
1935
|
-
// https://tc39.github.io/proposal-set-methods/#Set.prototype.isDisjointFrom
|
|
1936
|
-
var setIsDisjointFrom = function isDisjointFrom(other) {
|
|
1937
|
-
var O = aSet$4(this);
|
|
1938
|
-
var otherRec = getSetRecord$4(other);
|
|
1939
|
-
if (size$2(O) <= otherRec.size) return iterateSet(O, function (e) {
|
|
1940
|
-
if (otherRec.includes(e)) return false;
|
|
1941
|
-
}, true) !== false;
|
|
1942
|
-
var iterator = otherRec.getIterator();
|
|
1943
|
-
return iterateSimple$3(iterator, function (e) {
|
|
1944
|
-
if (has$2(O, e)) return iteratorClose$1(iterator, 'normal', false);
|
|
1945
|
-
}) !== false;
|
|
1946
|
-
};
|
|
1947
|
-
|
|
1948
|
-
var $$7 = _export;
|
|
1949
|
-
var isDisjointFrom = setIsDisjointFrom;
|
|
1950
|
-
var setMethodAcceptSetLike$4 = setMethodAcceptSetLike$7;
|
|
1951
|
-
|
|
1952
|
-
// `Set.prototype.isDisjointFrom` method
|
|
1953
|
-
// https://github.com/tc39/proposal-set-methods
|
|
1954
|
-
$$7({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$4('isDisjointFrom') }, {
|
|
1955
|
-
isDisjointFrom: isDisjointFrom
|
|
1956
|
-
});
|
|
1957
|
-
|
|
1958
|
-
var aSet$3 = aSet$7;
|
|
1959
|
-
var size$1 = setSize;
|
|
1960
|
-
var iterate$3 = setIterate;
|
|
1961
|
-
var getSetRecord$3 = getSetRecord$7;
|
|
1962
|
-
|
|
1963
|
-
// `Set.prototype.isSubsetOf` method
|
|
1964
|
-
// https://tc39.github.io/proposal-set-methods/#Set.prototype.isSubsetOf
|
|
1965
|
-
var setIsSubsetOf = function isSubsetOf(other) {
|
|
1966
|
-
var O = aSet$3(this);
|
|
1967
|
-
var otherRec = getSetRecord$3(other);
|
|
1968
|
-
if (size$1(O) > otherRec.size) return false;
|
|
1969
|
-
return iterate$3(O, function (e) {
|
|
1970
|
-
if (!otherRec.includes(e)) return false;
|
|
1971
|
-
}, true) !== false;
|
|
1972
|
-
};
|
|
1973
|
-
|
|
1974
|
-
var $$6 = _export;
|
|
1975
|
-
var isSubsetOf = setIsSubsetOf;
|
|
1976
|
-
var setMethodAcceptSetLike$3 = setMethodAcceptSetLike$7;
|
|
1977
|
-
|
|
1978
|
-
// `Set.prototype.isSubsetOf` method
|
|
1979
|
-
// https://github.com/tc39/proposal-set-methods
|
|
1980
|
-
$$6({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$3('isSubsetOf') }, {
|
|
1981
|
-
isSubsetOf: isSubsetOf
|
|
1982
|
-
});
|
|
1983
|
-
|
|
1984
|
-
var aSet$2 = aSet$7;
|
|
1985
|
-
var has$1 = setHelpers.has;
|
|
1986
|
-
var size = setSize;
|
|
1987
|
-
var getSetRecord$2 = getSetRecord$7;
|
|
1988
|
-
var iterateSimple$2 = iterateSimple$7;
|
|
1989
|
-
var iteratorClose = iteratorClose$5;
|
|
1990
|
-
|
|
1991
|
-
// `Set.prototype.isSupersetOf` method
|
|
1992
|
-
// https://tc39.github.io/proposal-set-methods/#Set.prototype.isSupersetOf
|
|
1993
|
-
var setIsSupersetOf = function isSupersetOf(other) {
|
|
1994
|
-
var O = aSet$2(this);
|
|
1995
|
-
var otherRec = getSetRecord$2(other);
|
|
1996
|
-
if (size(O) < otherRec.size) return false;
|
|
1997
|
-
var iterator = otherRec.getIterator();
|
|
1998
|
-
return iterateSimple$2(iterator, function (e) {
|
|
1999
|
-
if (!has$1(O, e)) return iteratorClose(iterator, 'normal', false);
|
|
2000
|
-
}) !== false;
|
|
2001
|
-
};
|
|
2002
|
-
|
|
2003
|
-
var $$5 = _export;
|
|
2004
|
-
var isSupersetOf = setIsSupersetOf;
|
|
2005
|
-
var setMethodAcceptSetLike$2 = setMethodAcceptSetLike$7;
|
|
2006
|
-
|
|
2007
|
-
// `Set.prototype.isSupersetOf` method
|
|
2008
|
-
// https://github.com/tc39/proposal-set-methods
|
|
2009
|
-
$$5({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$2('isSupersetOf') }, {
|
|
2010
|
-
isSupersetOf: isSupersetOf
|
|
2011
|
-
});
|
|
2012
|
-
|
|
2013
|
-
var aSet$1 = aSet$7;
|
|
2014
|
-
var SetHelpers = setHelpers;
|
|
2015
|
-
var clone$1 = setClone;
|
|
2016
|
-
var getSetRecord$1 = getSetRecord$7;
|
|
2017
|
-
var iterateSimple$1 = iterateSimple$7;
|
|
2018
|
-
|
|
2019
|
-
var add$1 = SetHelpers.add;
|
|
2020
|
-
var has = SetHelpers.has;
|
|
2021
|
-
var remove = SetHelpers.remove;
|
|
2022
|
-
|
|
2023
|
-
// `Set.prototype.symmetricDifference` method
|
|
2024
|
-
// https://github.com/tc39/proposal-set-methods
|
|
2025
|
-
var setSymmetricDifference = function symmetricDifference(other) {
|
|
2026
|
-
var O = aSet$1(this);
|
|
2027
|
-
var keysIter = getSetRecord$1(other).getIterator();
|
|
2028
|
-
var result = clone$1(O);
|
|
2029
|
-
iterateSimple$1(keysIter, function (e) {
|
|
2030
|
-
if (has(O, e)) remove(result, e);
|
|
2031
|
-
else add$1(result, e);
|
|
2032
|
-
});
|
|
2033
|
-
return result;
|
|
2034
|
-
};
|
|
2035
|
-
|
|
2036
|
-
var $$4 = _export;
|
|
2037
|
-
var symmetricDifference = setSymmetricDifference;
|
|
2038
|
-
var setMethodAcceptSetLike$1 = setMethodAcceptSetLike$7;
|
|
2039
|
-
|
|
2040
|
-
// `Set.prototype.symmetricDifference` method
|
|
2041
|
-
// https://github.com/tc39/proposal-set-methods
|
|
2042
|
-
$$4({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$1('symmetricDifference') }, {
|
|
2043
|
-
symmetricDifference: symmetricDifference
|
|
2044
|
-
});
|
|
2045
|
-
|
|
2046
|
-
var aSet = aSet$7;
|
|
2047
|
-
var add = setHelpers.add;
|
|
2048
|
-
var clone = setClone;
|
|
2049
|
-
var getSetRecord = getSetRecord$7;
|
|
2050
|
-
var iterateSimple = iterateSimple$7;
|
|
2051
|
-
|
|
2052
|
-
// `Set.prototype.union` method
|
|
2053
|
-
// https://github.com/tc39/proposal-set-methods
|
|
2054
|
-
var setUnion = function union(other) {
|
|
2055
|
-
var O = aSet(this);
|
|
2056
|
-
var keysIter = getSetRecord(other).getIterator();
|
|
2057
|
-
var result = clone(O);
|
|
2058
|
-
iterateSimple(keysIter, function (it) {
|
|
2059
|
-
add(result, it);
|
|
2060
|
-
});
|
|
2061
|
-
return result;
|
|
2062
|
-
};
|
|
2063
|
-
|
|
2064
|
-
var $$3 = _export;
|
|
2065
|
-
var union = setUnion;
|
|
2066
|
-
var setMethodAcceptSetLike = setMethodAcceptSetLike$7;
|
|
2067
|
-
|
|
2068
|
-
// `Set.prototype.union` method
|
|
2069
|
-
// https://github.com/tc39/proposal-set-methods
|
|
2070
|
-
$$3({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike('union') }, {
|
|
2071
|
-
union: union
|
|
2072
|
-
});
|
|
2073
|
-
|
|
2074
|
-
var classof = classofRaw$2;
|
|
2075
|
-
|
|
2076
|
-
// `IsArray` abstract operation
|
|
2077
|
-
// https://tc39.es/ecma262/#sec-isarray
|
|
2078
|
-
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
2079
|
-
var isArray$1 = Array.isArray || function isArray(argument) {
|
|
2080
|
-
return classof(argument) === 'Array';
|
|
2081
|
-
};
|
|
2082
|
-
|
|
2083
|
-
var DESCRIPTORS = descriptors;
|
|
2084
|
-
var isArray = isArray$1;
|
|
2085
|
-
|
|
2086
|
-
var $TypeError$2 = TypeError;
|
|
2087
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
2088
|
-
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
2089
|
-
|
|
2090
|
-
// Safari < 13 does not throw an error in this case
|
|
2091
|
-
var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
|
|
2092
|
-
// makes no sense without proper strict mode support
|
|
2093
|
-
if (this !== undefined) return true;
|
|
2094
|
-
try {
|
|
2095
|
-
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
2096
|
-
Object.defineProperty([], 'length', { writable: false }).length = 1;
|
|
2097
|
-
} catch (error) {
|
|
2098
|
-
return error instanceof TypeError;
|
|
2099
|
-
}
|
|
2100
|
-
}();
|
|
2101
|
-
|
|
2102
|
-
var arraySetLength = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
|
|
2103
|
-
if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
|
|
2104
|
-
throw new $TypeError$2('Cannot set read only .length');
|
|
2105
|
-
} return O.length = length;
|
|
2106
|
-
} : function (O, length) {
|
|
2107
|
-
return O.length = length;
|
|
2108
|
-
};
|
|
2109
|
-
|
|
2110
|
-
var $TypeError$1 = TypeError;
|
|
2111
|
-
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
|
|
2112
|
-
|
|
2113
|
-
var doesNotExceedSafeInteger$1 = function (it) {
|
|
2114
|
-
if (it > MAX_SAFE_INTEGER) throw $TypeError$1('Maximum allowed index exceeded');
|
|
2115
|
-
return it;
|
|
2116
|
-
};
|
|
2117
|
-
|
|
2118
|
-
var $$2 = _export;
|
|
2119
|
-
var toObject = toObject$3;
|
|
2120
|
-
var lengthOfArrayLike = lengthOfArrayLike$3;
|
|
2121
|
-
var setArrayLength = arraySetLength;
|
|
2122
|
-
var doesNotExceedSafeInteger = doesNotExceedSafeInteger$1;
|
|
2123
|
-
var fails = fails$d;
|
|
2124
|
-
|
|
2125
|
-
var INCORRECT_TO_LENGTH = fails(function () {
|
|
2126
|
-
return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;
|
|
2127
|
-
});
|
|
2128
|
-
|
|
2129
|
-
// V8 <= 121 and Safari <= 15.4; FF < 23 throws InternalError
|
|
2130
|
-
// https://bugs.chromium.org/p/v8/issues/detail?id=12681
|
|
2131
|
-
var properErrorOnNonWritableLength = function () {
|
|
2132
|
-
try {
|
|
2133
|
-
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
2134
|
-
Object.defineProperty([], 'length', { writable: false }).push();
|
|
2135
|
-
} catch (error) {
|
|
2136
|
-
return error instanceof TypeError;
|
|
2137
|
-
}
|
|
2138
|
-
};
|
|
2139
|
-
|
|
2140
|
-
var FORCED = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
|
|
2141
|
-
|
|
2142
|
-
// `Array.prototype.push` method
|
|
2143
|
-
// https://tc39.es/ecma262/#sec-array.prototype.push
|
|
2144
|
-
$$2({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
|
|
2145
|
-
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
2146
|
-
push: function push(item) {
|
|
2147
|
-
var O = toObject(this);
|
|
2148
|
-
var len = lengthOfArrayLike(O);
|
|
2149
|
-
var argCount = arguments.length;
|
|
2150
|
-
doesNotExceedSafeInteger(len + argCount);
|
|
2151
|
-
for (var i = 0; i < argCount; i++) {
|
|
2152
|
-
O[len] = arguments[i];
|
|
2153
|
-
len++;
|
|
2154
|
-
}
|
|
2155
|
-
setArrayLength(O, len);
|
|
2156
|
-
return len;
|
|
2157
|
-
}
|
|
2158
|
-
});
|
|
2159
|
-
|
|
2160
|
-
var $$1 = _export;
|
|
2161
|
-
var iterate$2 = iterate$6;
|
|
2162
|
-
var aCallable$1 = aCallable$a;
|
|
2163
|
-
var anObject$1 = anObject$f;
|
|
2164
|
-
var getIteratorDirect$1 = getIteratorDirect$6;
|
|
2165
|
-
|
|
2166
|
-
var $TypeError = TypeError;
|
|
2167
|
-
|
|
2168
|
-
// `Iterator.prototype.reduce` method
|
|
2169
|
-
// https://github.com/tc39/proposal-iterator-helpers
|
|
2170
|
-
$$1({ target: 'Iterator', proto: true, real: true }, {
|
|
2171
|
-
reduce: function reduce(reducer /* , initialValue */) {
|
|
2172
|
-
anObject$1(this);
|
|
2173
|
-
aCallable$1(reducer);
|
|
2174
|
-
var record = getIteratorDirect$1(this);
|
|
2175
|
-
var noInitial = arguments.length < 2;
|
|
2176
|
-
var accumulator = noInitial ? undefined : arguments[1];
|
|
2177
|
-
var counter = 0;
|
|
2178
|
-
iterate$2(record, function (value) {
|
|
2179
|
-
if (noInitial) {
|
|
2180
|
-
noInitial = false;
|
|
2181
|
-
accumulator = value;
|
|
2182
|
-
} else {
|
|
2183
|
-
accumulator = reducer(accumulator, value, counter);
|
|
2184
|
-
}
|
|
2185
|
-
counter++;
|
|
2186
|
-
}, { IS_RECORD: true });
|
|
2187
|
-
if (noInitial) throw new $TypeError('Reduce of empty iterator with no initial value');
|
|
2188
|
-
return accumulator;
|
|
2189
|
-
}
|
|
2190
|
-
});
|
|
2191
|
-
|
|
2192
15
|
// MARK: Functions
|
|
2193
16
|
function asIterable(values, treatStringAsIterable) {
|
|
2194
17
|
let iterable;
|
|
@@ -2777,7 +600,7 @@ function symmetricDifferenceArray(a, b) {
|
|
|
2777
600
|
return symmetricDifferenceArrayBetweenSets(new Set(a), new Set(b));
|
|
2778
601
|
}
|
|
2779
602
|
function symmetricDifferenceArrayBetweenSets(a, b) {
|
|
2780
|
-
return Array.from(symmetricDifference
|
|
603
|
+
return Array.from(symmetricDifference(a, b));
|
|
2781
604
|
}
|
|
2782
605
|
function flattenArrayToSet(array) {
|
|
2783
606
|
return new Set(flattenArray(array));
|
|
@@ -3326,25 +1149,6 @@ function allValuesAreMaybeNot(values) {
|
|
|
3326
1149
|
function allValuesAreNotMaybe(values) {
|
|
3327
1150
|
return values.findIndex(x => x == null) === -1;
|
|
3328
1151
|
}
|
|
3329
|
-
// MARK: Compat
|
|
3330
|
-
/**
|
|
3331
|
-
* Filters all maybe values from the input array. If a maybe value is input, returns an empty array.
|
|
3332
|
-
*
|
|
3333
|
-
* @param values
|
|
3334
|
-
* @returns
|
|
3335
|
-
*
|
|
3336
|
-
* @deprecated use filterMaybeArrayValues instead.
|
|
3337
|
-
*/
|
|
3338
|
-
const filterMaybeValues = filterMaybeArrayValues;
|
|
3339
|
-
/**
|
|
3340
|
-
* Filters all empty and maybe values from the input array. If a maybe value is input, returns an empty array.
|
|
3341
|
-
*
|
|
3342
|
-
* @param values
|
|
3343
|
-
* @returns
|
|
3344
|
-
*
|
|
3345
|
-
* @deprecated use filterEmptyArrayValues instead.
|
|
3346
|
-
*/
|
|
3347
|
-
const filterEmptyValues = filterEmptyArrayValues;
|
|
3348
1152
|
|
|
3349
1153
|
/**
|
|
3350
1154
|
* Convenience function that is used to "build" an object of a specific type.
|
|
@@ -3775,31 +1579,6 @@ function booleanKeyArrayUtility(readKey) {
|
|
|
3775
1579
|
* Utility for working with boolean string key arrays.
|
|
3776
1580
|
*/
|
|
3777
1581
|
const BooleanStringKeyArrayUtility = booleanKeyArrayUtility(x => x ? x : undefined);
|
|
3778
|
-
// MARK: Compat
|
|
3779
|
-
/**
|
|
3780
|
-
* @Deprecated use BooleanStringKeyArrayUtility instead
|
|
3781
|
-
*/
|
|
3782
|
-
const BooleanStringKeyArrayUtilityInstance = BooleanStringKeyArrayUtility;
|
|
3783
|
-
|
|
3784
|
-
var $ = _export;
|
|
3785
|
-
var iterate$1 = iterate$6;
|
|
3786
|
-
var aCallable = aCallable$a;
|
|
3787
|
-
var anObject = anObject$f;
|
|
3788
|
-
var getIteratorDirect = getIteratorDirect$6;
|
|
3789
|
-
|
|
3790
|
-
// `Iterator.prototype.find` method
|
|
3791
|
-
// https://github.com/tc39/proposal-iterator-helpers
|
|
3792
|
-
$({ target: 'Iterator', proto: true, real: true }, {
|
|
3793
|
-
find: function find(predicate) {
|
|
3794
|
-
anObject(this);
|
|
3795
|
-
aCallable(predicate);
|
|
3796
|
-
var record = getIteratorDirect(this);
|
|
3797
|
-
var counter = 0;
|
|
3798
|
-
return iterate$1(record, function (value, stop) {
|
|
3799
|
-
if (predicate(value, counter++)) return stop(value);
|
|
3800
|
-
}, { IS_RECORD: true, INTERRUPTED: true }).result;
|
|
3801
|
-
}
|
|
3802
|
-
});
|
|
3803
1582
|
|
|
3804
1583
|
/**
|
|
3805
1584
|
* Set that is implemented internally using a Map, and input values have their keys read.
|
|
@@ -9454,10 +7233,10 @@ function getOverlappingRectangle(a, b) {
|
|
|
9454
7233
|
};
|
|
9455
7234
|
}
|
|
9456
7235
|
|
|
9457
|
-
const MIN_LATITUDE_VALUE = -90
|
|
7236
|
+
const MIN_LATITUDE_VALUE = -90;
|
|
9458
7237
|
const MAX_LATITUDE_VALUE = 90.0;
|
|
9459
7238
|
const TOTAL_LATITUDE_RANGE = MAX_LATITUDE_VALUE - MIN_LATITUDE_VALUE;
|
|
9460
|
-
const MIN_LONGITUDE_VALUE = -180
|
|
7239
|
+
const MIN_LONGITUDE_VALUE = -180;
|
|
9461
7240
|
const MAX_LONGITUDE_VALUE = 180.0;
|
|
9462
7241
|
const TOTAL_LONGITUDE_RANGE = MAX_LONGITUDE_VALUE - MIN_LONGITUDE_VALUE;
|
|
9463
7242
|
function isLatLngPoint(input) {
|
|
@@ -11086,26 +8865,6 @@ function dateFromDateOrTimeSecondsNumber(input) {
|
|
|
11086
8865
|
function unixDateTimeSecondsNumberToDate(dateTimeNumber) {
|
|
11087
8866
|
return dateTimeNumber != null ? new Date(dateTimeNumber * 1000) : dateTimeNumber;
|
|
11088
8867
|
}
|
|
11089
|
-
/**
|
|
11090
|
-
* @deprecated use unixDateTimeSecondsNumberFromDateOrTimeNumber instead
|
|
11091
|
-
*/
|
|
11092
|
-
const unixTimeNumberFromDateOrTimeNumber = unixDateTimeSecondsNumberFromDateOrTimeNumber;
|
|
11093
|
-
/**
|
|
11094
|
-
* @deprecated use unixDateTimeSecondsNumberForNow instead
|
|
11095
|
-
*/
|
|
11096
|
-
const unixTimeNumberForNow = unixDateTimeSecondsNumberForNow;
|
|
11097
|
-
/**
|
|
11098
|
-
* @deprecated use unixDateTimeSecondsNumberFromDate instead
|
|
11099
|
-
*/
|
|
11100
|
-
const unixTimeNumberFromDate = unixDateTimeSecondsNumberFromDate;
|
|
11101
|
-
/**
|
|
11102
|
-
* @deprecated use dateFromDateOrTimeSecondsNumber instead
|
|
11103
|
-
*/
|
|
11104
|
-
const dateFromDateOrTimeNumber = dateFromDateOrTimeSecondsNumber;
|
|
11105
|
-
/**
|
|
11106
|
-
* @deprecated use unixDateTimeSecondsNumberToDate instead
|
|
11107
|
-
*/
|
|
11108
|
-
const unixTimeNumberToDate = unixDateTimeSecondsNumberToDate;
|
|
11109
8868
|
|
|
11110
8869
|
/**
|
|
11111
8870
|
* Returns expiration details for the input configuration.
|
|
@@ -11738,7 +9497,10 @@ function performTasksInParallelFunction(config) {
|
|
|
11738
9497
|
* @param config
|
|
11739
9498
|
*/
|
|
11740
9499
|
function performTasksFromFactoryInParallelFunction(config) {
|
|
11741
|
-
|
|
9500
|
+
/**
|
|
9501
|
+
* By default returns null
|
|
9502
|
+
*/
|
|
9503
|
+
const defaultNonConcurrentTaskKeyFactory = () => null;
|
|
11742
9504
|
const {
|
|
11743
9505
|
taskFactory,
|
|
11744
9506
|
sequential,
|
|
@@ -11849,7 +9611,6 @@ function performTasksFromFactoryInParallelFunction(config) {
|
|
|
11849
9611
|
// un-reserve the key from each parallel task
|
|
11850
9612
|
currentParellelTaskKeys.delete(key);
|
|
11851
9613
|
const waitingForKey = waitingConcurrentTasks.get(key);
|
|
11852
|
-
// eslint-disable-next-line no-constant-condition
|
|
11853
9614
|
while (true) {
|
|
11854
9615
|
const nextWaitingTask = waitingForKey.shift(); // take from the front to retain unique task order
|
|
11855
9616
|
if (nextWaitingTask) {
|
|
@@ -12376,11 +10137,6 @@ function approximateTimerEndDate(timer) {
|
|
|
12376
10137
|
return null;
|
|
12377
10138
|
}
|
|
12378
10139
|
}
|
|
12379
|
-
// MARK: Compat
|
|
12380
|
-
/**
|
|
12381
|
-
* @deprecated use makeTimer instead of timer.
|
|
12382
|
-
*/
|
|
12383
|
-
const timer = makeTimer;
|
|
12384
10140
|
|
|
12385
10141
|
/**
|
|
12386
10142
|
* Enumeration of AM/PM time indicators.
|
|
@@ -12656,16 +10412,6 @@ const mapObjectKeysToLowercase = mapObjectKeysFunction(key => {
|
|
|
12656
10412
|
}
|
|
12657
10413
|
return nextKey;
|
|
12658
10414
|
});
|
|
12659
|
-
// MARK: Compat
|
|
12660
|
-
/**
|
|
12661
|
-
* Converts an ObjectMap into tuples.
|
|
12662
|
-
*
|
|
12663
|
-
* @deprecated use Object.entries instead.
|
|
12664
|
-
*
|
|
12665
|
-
* @param object
|
|
12666
|
-
* @returns
|
|
12667
|
-
*/
|
|
12668
|
-
const objectToTuples = Object.entries;
|
|
12669
10415
|
|
|
12670
10416
|
function makeCopyModelFieldFunction(key, inputConfig) {
|
|
12671
10417
|
const config = inputConfig ?? {};
|
|
@@ -13567,10 +11313,6 @@ function fileExtensionForMimeType(mimeType) {
|
|
|
13567
11313
|
const result = imageFileExtensionForMimeType(mimeType) ?? documentFileExtensionForMimeType(mimeType) ?? applicationFileExtensionForMimeType(mimeType);
|
|
13568
11314
|
return result;
|
|
13569
11315
|
}
|
|
13570
|
-
/**
|
|
13571
|
-
* @deprecated Use mimeTypeForImageFileExtension instead.
|
|
13572
|
-
*/
|
|
13573
|
-
const mimetypeForImageType = mimeTypeForImageFileExtension;
|
|
13574
11316
|
|
|
13575
11317
|
/**
|
|
13576
11318
|
* Creates a CharacterPrefixSuffixInstance
|
|
@@ -14075,20 +11817,6 @@ function flattenTreeToArrayFunction(mapNodeFnOrConfig, defaultAddNodeFn) {
|
|
|
14075
11817
|
return array;
|
|
14076
11818
|
};
|
|
14077
11819
|
}
|
|
14078
|
-
/**
|
|
14079
|
-
* Convenience function for flattening multiple trees with a single configured flatten function.
|
|
14080
|
-
*
|
|
14081
|
-
* @deprecated FlattenTreeFunction now supports an array of trees.
|
|
14082
|
-
*
|
|
14083
|
-
* @param trees
|
|
14084
|
-
* @param flattenFn
|
|
14085
|
-
* @returns
|
|
14086
|
-
*/
|
|
14087
|
-
function flattenTrees(trees, flattenFn, addNodeFn) {
|
|
14088
|
-
const array = [];
|
|
14089
|
-
flattenFn(trees, array, addNodeFn);
|
|
14090
|
-
return array;
|
|
14091
|
-
}
|
|
14092
11820
|
|
|
14093
11821
|
/*eslint @typescript-eslint/no-explicit-any:"off"*/
|
|
14094
11822
|
// any is used with intent here, as the recursive TreeNode value requires its use to terminate.
|
|
@@ -14107,7 +11835,7 @@ function flattenTrees(trees, flattenFn, addNodeFn) {
|
|
|
14107
11835
|
*/
|
|
14108
11836
|
function expandFlattenTreeFunction(expand, flatten) {
|
|
14109
11837
|
return values => {
|
|
14110
|
-
return
|
|
11838
|
+
return flatten(expandTrees(values, expand));
|
|
14111
11839
|
};
|
|
14112
11840
|
}
|
|
14113
11841
|
|
|
@@ -14198,20 +11926,24 @@ function randomBoolean(chance = 50) {
|
|
|
14198
11926
|
}
|
|
14199
11927
|
function stringToBoolean(value, defaultValue) {
|
|
14200
11928
|
let result = defaultValue;
|
|
14201
|
-
if (value) {
|
|
14202
|
-
|
|
14203
|
-
|
|
14204
|
-
|
|
14205
|
-
|
|
14206
|
-
|
|
14207
|
-
|
|
14208
|
-
|
|
14209
|
-
|
|
14210
|
-
|
|
14211
|
-
|
|
14212
|
-
|
|
14213
|
-
|
|
14214
|
-
|
|
11929
|
+
if (value != null) {
|
|
11930
|
+
if (typeof value === 'boolean') {
|
|
11931
|
+
result = value;
|
|
11932
|
+
} else {
|
|
11933
|
+
switch (value.toLowerCase()) {
|
|
11934
|
+
case 'y':
|
|
11935
|
+
case 'yes':
|
|
11936
|
+
case 't':
|
|
11937
|
+
case 'true':
|
|
11938
|
+
result = true;
|
|
11939
|
+
break;
|
|
11940
|
+
case 'n':
|
|
11941
|
+
case 'no':
|
|
11942
|
+
case 'f':
|
|
11943
|
+
case 'false':
|
|
11944
|
+
result = false;
|
|
11945
|
+
break;
|
|
11946
|
+
}
|
|
14215
11947
|
}
|
|
14216
11948
|
}
|
|
14217
11949
|
return result;
|
|
@@ -14320,43 +12052,6 @@ function isFinalPage(page) {
|
|
|
14320
12052
|
return page?.page === FINAL_PAGE;
|
|
14321
12053
|
}
|
|
14322
12054
|
|
|
14323
|
-
/**
|
|
14324
|
-
* Page calculation context for calculating the amount to skip/etc.
|
|
14325
|
-
*
|
|
14326
|
-
* @deprecated
|
|
14327
|
-
*/
|
|
14328
|
-
class PageCalculator {
|
|
14329
|
-
constructor(config) {
|
|
14330
|
-
this.pageSize = void 0;
|
|
14331
|
-
this.limitKey = void 0;
|
|
14332
|
-
this.skipKey = void 0;
|
|
14333
|
-
this.pageSize = config.pageSize;
|
|
14334
|
-
if (!this.pageSize) {
|
|
14335
|
-
throw new Error('Page size is required.');
|
|
14336
|
-
}
|
|
14337
|
-
this.limitKey = config.limitKey ?? 'limit';
|
|
14338
|
-
this.skipKey = config.skipKey ?? 'skip';
|
|
14339
|
-
}
|
|
14340
|
-
get limit() {
|
|
14341
|
-
return this.pageSize;
|
|
14342
|
-
}
|
|
14343
|
-
calcWithPage(page) {
|
|
14344
|
-
return this.calc(page?.page);
|
|
14345
|
-
}
|
|
14346
|
-
calc(page = 0) {
|
|
14347
|
-
return {
|
|
14348
|
-
[this.limitKey]: this.pageSize,
|
|
14349
|
-
[this.skipKey]: this.calcSkip(page)
|
|
14350
|
-
};
|
|
14351
|
-
}
|
|
14352
|
-
calcSkipWithPage(page) {
|
|
14353
|
-
return this.calcSkip(page?.page);
|
|
14354
|
-
}
|
|
14355
|
-
calcSkip(page = 0) {
|
|
14356
|
-
return (page ?? 0) * this.pageSize;
|
|
14357
|
-
}
|
|
14358
|
-
}
|
|
14359
|
-
|
|
14360
12055
|
/**
|
|
14361
12056
|
* Creates a FilteredPage.
|
|
14362
12057
|
*
|
|
@@ -14451,4 +12146,4 @@ function slashPathDirectoryTree(nodeValues, options) {
|
|
|
14451
12146
|
return root;
|
|
14452
12147
|
}
|
|
14453
12148
|
|
|
14454
|
-
export { ALL_DOUBLE_SLASHES_REGEX, ALL_SLASHES_REGEX, ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX, 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_ROLE_CLAIMS_DEFAULT_CLAIM_VALUE, AUTH_ROLE_CLAIMS_DEFAULT_EMPTY_VALUE, AUTH_TOS_SIGNED_ROLE, AUTH_USER_ROLE, AbstractUniqueModel, Assert, AssertMax, AssertMin, AssertionError, AssertionIssueHandler, BooleanStringKeyArrayUtility, BooleanStringKeyArrayUtilityInstance, CATCH_ALL_HANDLE_RESULT_KEY, COMMA_JOINER, CSV_MIME_TYPE, CUT_VALUE_TO_ZERO_PRECISION, DASH_CHARACTER_PREFIX_INSTANCE, DATE_NOW_VALUE, DAYS_IN_YEAR, DEFAULT_CUT_STRING_END_TEXT, DEFAULT_LAT_LNG_STRING_VALUE, DEFAULT_RANDOM_EMAIL_FACTORY_CONFIG, DEFAULT_RANDOM_PHONE_NUMBER_FACTORY_CONFIG, DEFAULT_READABLE_ERROR_CODE, DEFAULT_SLASH_PATH_ILLEGAL_CHARACTERS, DEFAULT_SLASH_PATH_ILLEGAL_CHARACTER_REPLACEMENT, DEFAULT_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, HOURS_IN_DAY, HTML_MIME_TYPE, HTTP_OR_HTTPS_REGEX, HashSet, IMAGE_FILE_EXTENSION_TO_MIME_TYPES_RECORD, IMAGE_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, ISO8601_DAY_STRING_REGEX, ISO8601_DAY_STRING_START_REGEX, ISO_8601_DATE_STRING_REGEX, JPEG_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, MemoryStorageInstance, ModelRelationUtility, NOOP_MODIFIER, NUMBER_STRING_DENCODER_64, NUMBER_STRING_DENCODER_64_DEFAULT_NEGATIVE_PREFIX, NUMBER_STRING_DENCODER_64_DIGITS, PDF_MIME_TYPE, PHONE_EXTENSION_NUMBER_REGEX, PNG_MIME_TYPE, PRIMATIVE_KEY_DENCODER_VALUE, PageCalculator, PropertyDescriptorUtility, RAW_MIME_TYPE, REGEX_SPECIAL_CHARACTERS, REGEX_SPECIAL_CHARACTERS_SET, RelationChange, SECONDS_IN_MINUTE, SHARED_MEMORY_STORAGE, SLASH_PATH_FILE_TYPE_SEPARATOR, SLASH_PATH_SEPARATOR, SORT_VALUE_EQUAL, SORT_VALUE_GREATER_THAN, SORT_VALUE_LESS_THAN, SPACE_JOINER, SPLIT_STRING_TREE_NODE_ROOT_VALUE, SVG_MIME_TYPE, ServerErrorResponse, SetDeltaChange, SimpleStorageObject, SlashPathPathMatcherPartCode, StorageObject, StorageObjectUtility, StoredDataError, SyncState, TIFF_MIME_TYPE, 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, build, cachedGetter, calculateExpirationDate, capLatValue, capitalizeFirstLetter, caseInsensitiveFilterByIndexOfDecisionFactory, caseInsensitiveString, catchAllHandlerKey, chainMapFunction, chainMapSameFunctions, characterPrefixSuffixInstance, checkAnyHaveExpired, checkAtleastOneNotExpired, coerceToEmailParticipants, combineMaps, compareEqualityWithValueFromItemsFunction, compareEqualityWithValueFromItemsFunctionFactory, compareFnOrder, compareWithMappedValuesFunction, computeNextFractionalHour, computeNextFreeIndexFunction, computeNextFreeIndexOnSortedValuesFunction, concatArrays, concatArraysUnique, containsAllStringsAnyCase, containsAllValues, containsAnyStringAnyCase, containsAnyValue, containsAnyValueFromSet, containsNoValueFromSet, containsNoneOfValue, containsStringAnyCase, convertEmailParticipantStringToParticipant, convertMaybeToArray, convertMaybeToNonEmptyArray, convertParticipantToEmailParticipantString, convertToArray, copyArray, copyField, copyLatLngBound, copyLatLngPoint, copyObject, copySetAndDo, countAllInNestedArray, countPOJOKeys, countPOJOKeysFunction, cronExpressionRepeatingEveryNMinutes, cssClassesSet, cutString, cutStringFunction, cutToPrecision, cutValueToInteger, cutValueToPrecision, cutValueToPrecisionFunction, dateFromDateOrTimeMillisecondsNumber, dateFromDateOrTimeNumber, dateFromDateOrTimeSecondsNumber, dateFromLogicalDate, dateFromMinuteOfDay, dateOrMillisecondsToDate, dateToHoursAndMinutes, dateToMinuteOfDay, dayOfWeek, daysOfWeekArray, daysOfWeekFromEnabledDays, daysOfWeekNameFunction, daysOfWeekNameMap, decisionFunction, decodeHashedValues, decodeHashedValuesWithDecodeMap, decodeModelKeyTypePair, defaultFilterFromPOJOFunctionNoCopy, defaultForwardFunctionFactory, defaultLatLngPoint, defaultLatLngString, dencodeBitwiseSet, depthFirstExploreTreeTraversalFactoryFunction, diffLatLngBoundPoints, diffLatLngPoints, documentFileExtensionForMimeType, dollarAmountString, dollarAmountStringWithUnitFunction, e164PhoneNumberExtensionPair, e164PhoneNumberFromE164PhoneNumberExtensionPair, enabledDaysFromDaysOfWeek, encodeBitwiseSet, encodeModelKeyTypePair, errorMessageContainsString, errorMessageContainsStringFunction, escapeStringCharactersFunction, escapeStringForRegex, excludeValues, excludeValuesFromArray, excludeValuesFromSet, existsInIterable, expandArrayMapTuples, expandArrayValueTuples, expandFlattenTreeFunction, expandIndexSet, expandSlashPathPathMatcherPartToDecisionFunctions, expandTreeFunction, expandTrees, expirationDetails, exploreTreeFunction, exponentialPromiseRateLimiter, extendLatLngBound, fileExtensionForMimeType, filterAndMapFunction, filterEmptyArrayValues, filterEmptyPojoValues, filterEmptyValues, filterFalsyAndEmptyValues, filterFromIterable, filterFromPOJO, filterFromPOJOFunction, filterKeyValueTupleFunction, filterKeyValueTuples, filterKeyValueTuplesFunction, filterKeyValueTuplesInputToFilter, filterKeysOnPOJOFunction, filterMaybeArrayFunction, filterMaybeArrayValues, filterMaybeValues, 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, flattenTree, flattenTreeToArray, flattenTreeToArrayFunction, flattenTrees, flattenWhitespace, forEachInIterable, forEachKeyValue, forEachKeyValueOnPOJOFunction, forEachWithArray, forwardFunction, fractionalHoursToMinutes, generateIfDoesNotExist, 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, hourToFractionalHour, hoursAndMinutesToString, idBatchFactory, imageFileExtensionForMimeType, 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, isFalseBooleanKeyArray, isFinalPage, isGetter, 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, 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, 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, mergeArrays, mergeArraysIntoArray, mergeFilterFunctions, mergeModifiers, mergeObjects, mergeObjectsFunction, mergeSlashPaths, messageFromError, millisecondsToMinutesAndSeconds, mimeTypeForApplicationFileExtension, mimeTypeForDocumentFileExtension, mimeTypeForFileExtension, mimeTypeForImageFileExtension, mimetypeForImageType, minAndMaxFunction, minAndMaxIndex, minAndMaxIndexFunction, minAndMaxIndexItemsFunction, minAndMaxNumber, minutesToFractionalHours, minutesToHoursAndMinutes, modelFieldConversions, modelFieldMapFunction, modelFieldMapFunctions, modelTypeDataPairFactory, modifier, modifierMapToFunction, modifyModelMapFunction, modifyModelMapFunctions, monthDaySlashDateToDateString, monthOfYearFromDate, monthOfYearFromDateMonth, monthOfYearFromUTCDate, multiKeyValueMapFactory, multiValueMapBuilder, neMostLatLngPoint, nearestDivisibleValues, numberStringDencoder, numberStringDencoderDecodedNumberValueFunction, numberStringDencoderEncodedStringValueFunction, numberStringDencoderFunction, objectCopyFactory, objectDeltaArrayCompressor, objectFieldEqualityChecker, objectFlatMergeMatrix, objectHasKey, objectHasKeys, objectHasNoKeys, objectIsEmpty, objectKeyEqualityComparatorFunction, objectKeysEqualityComparatorFunction, objectMergeMatrix, objectToMap, objectToTuples, overlapsLatLngBoundFunction, overrideInObject, overrideInObjectFunctionFactory, padStartFunction, pairGroupValues, parseISO8601DayStringToUTCDate, partialServerError, passThrough, percentNumberFromDecimal, percentNumberToDecimal, performAsyncTask, performAsyncTasks, performBatchLoop, performMakeLoop, performTaskCountLoop, performTaskLoop, performTasksFromFactoryInParallelFunction, performTasksInParallel, performTasksInParallelFunction, pickOneRandomly, poll, primativeKeyDencoder, primativeKeyDencoderMap, primativeKeyStringDencoder, primativeValuesDelta, promiseReference, protectedFactory, pushArrayItemsIntoArray, pushElementOntoArray, pushItemOrArrayItemsIntoArray, randomArrayFactory, randomArrayIndex, randomBoolean, randomEmailFactory, randomFromArrayFactory, randomLatLngFactory, randomLatLngFromCenterFactory, randomNumber, randomNumberFactory, randomPhoneNumberFactory, randomPickFactory, range, rangedIndexedValuesArrayAccessorFactory, rangedIndexedValuesArrayAccessorInfoFactory, readBooleanKeySafetyWrap, readDomainFromEmailAddress, readDomainsFromEmailAddresses, readEmailDomainFromUrlOrEmailAddress, readIndexNumber, readKeysFrom, readKeysFromFilterUniqueFunctionAdditionalKeys, readKeysFromFilterUniqueFunctionAdditionalKeysInput, readKeysFunction, readKeysSetFrom, readKeysSetFunction, readKeysToMap, readModelKey, readModelKeyFromObject, readModelKeys, readModelKeysFromObjects, readMultipleKeysToMap, readPortNumber, readUniqueModelKey, readWebsiteProtocol, readableError, readableStreamToBase64, readableStreamToBuffer, readableStreamToStringFunction, rectangleOverlapsRectangle, reduceBooleansFn, reduceBooleansWithAnd, reduceBooleansWithAndFn, reduceBooleansWithOr, reduceBooleansWithOrFn, reduceNumbers, reduceNumbersFn, reduceNumbersWithAdd, reduceNumbersWithAddFn, reduceNumbersWithMax, reduceNumbersWithMaxFn, reduceNumbersWithMin, reduceNumbersWithMinFn, removeByKeyFromBooleanKeyArray, removeCharactersAfterFirstCharacterOccurence, removeCharactersAfterFirstCharacterOccurenceFunction, removeExtensionFromPhoneNumber, removeFromBooleanKeyArray, removeFromSet, removeFromSetCopy, removeHttpFromUrl, removeModelsWithKey, removeModelsWithSameKey, removeModifiers, removeTrailingFileTypeSeparators, removeTrailingSlashes, 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, searchStringFilterFunction, secondsToMinutesAndSeconds, 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, stringToBoolean, stringToLowercaseFunction, stringToUppercaseFunction, stringTrimFunction, sumOfIntegersBetween, swMostLatLngPoint, symmetricDifferenceArray, symmetricDifferenceArrayBetweenSets, symmetricDifferenceWithModels, takeFront, takeLast, takeValuesFromIterable, telUrlString, telUrlStringForE164PhoneNumberPair, terminatingFactoryFromArray, throwKeyIsRequired, timePeriodCounter, timer, toAbsoluteSlashPathStartType, toCaseInsensitiveStringArray, toMinuteOfDay, toModelFieldConversions, toModelMapFunctions, toReadableError, toRelativeSlashPathStartType, toggleInSet, toggleInSetCopy, toggleTimerRunning, transformNumberFunction, transformNumberFunctionConfig, transformStringFunction, transformStringFunctionConfig, transformStrings, trimArray, trueOrFalseString, tryWithPromiseFactoriesFunction, typedServiceRegistry, unique, uniqueCaseInsensitiveStrings, uniqueCaseInsensitiveStringsSet, uniqueKeys, uniqueModels, unitedStatesAddressString, unixDateTimeSecondsNumberForNow, unixDateTimeSecondsNumberFromDate, unixDateTimeSecondsNumberFromDateOrTimeNumber, unixDateTimeSecondsNumberToDate, unixMillisecondsNumberToDate, unixTimeNumberForNow, unixTimeNumberFromDate, unixTimeNumberFromDateOrTimeNumber, unixTimeNumberToDate, 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 };
|
|
12149
|
+
export { ALL_DOUBLE_SLASHES_REGEX, ALL_SLASHES_REGEX, ALL_SLASH_PATH_FILE_TYPE_SEPARATORS_REGEX, 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_ROLE_CLAIMS_DEFAULT_CLAIM_VALUE, AUTH_ROLE_CLAIMS_DEFAULT_EMPTY_VALUE, AUTH_TOS_SIGNED_ROLE, AUTH_USER_ROLE, AbstractUniqueModel, Assert, AssertMax, AssertMin, AssertionError, AssertionIssueHandler, BooleanStringKeyArrayUtility, CATCH_ALL_HANDLE_RESULT_KEY, COMMA_JOINER, CSV_MIME_TYPE, CUT_VALUE_TO_ZERO_PRECISION, DASH_CHARACTER_PREFIX_INSTANCE, DATE_NOW_VALUE, DAYS_IN_YEAR, DEFAULT_CUT_STRING_END_TEXT, DEFAULT_LAT_LNG_STRING_VALUE, DEFAULT_RANDOM_EMAIL_FACTORY_CONFIG, DEFAULT_RANDOM_PHONE_NUMBER_FACTORY_CONFIG, DEFAULT_READABLE_ERROR_CODE, DEFAULT_SLASH_PATH_ILLEGAL_CHARACTERS, DEFAULT_SLASH_PATH_ILLEGAL_CHARACTER_REPLACEMENT, DEFAULT_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, HOURS_IN_DAY, HTML_MIME_TYPE, HTTP_OR_HTTPS_REGEX, HashSet, IMAGE_FILE_EXTENSION_TO_MIME_TYPES_RECORD, IMAGE_MIME_TYPES_TO_FILE_EXTENSIONS_RECORD, ISO8601_DAY_STRING_REGEX, ISO8601_DAY_STRING_START_REGEX, ISO_8601_DATE_STRING_REGEX, JPEG_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, MemoryStorageInstance, ModelRelationUtility, NOOP_MODIFIER, NUMBER_STRING_DENCODER_64, NUMBER_STRING_DENCODER_64_DEFAULT_NEGATIVE_PREFIX, NUMBER_STRING_DENCODER_64_DIGITS, PDF_MIME_TYPE, PHONE_EXTENSION_NUMBER_REGEX, PNG_MIME_TYPE, PRIMATIVE_KEY_DENCODER_VALUE, PropertyDescriptorUtility, RAW_MIME_TYPE, REGEX_SPECIAL_CHARACTERS, REGEX_SPECIAL_CHARACTERS_SET, RelationChange, SECONDS_IN_MINUTE, SHARED_MEMORY_STORAGE, SLASH_PATH_FILE_TYPE_SEPARATOR, SLASH_PATH_SEPARATOR, SORT_VALUE_EQUAL, SORT_VALUE_GREATER_THAN, SORT_VALUE_LESS_THAN, SPACE_JOINER, SPLIT_STRING_TREE_NODE_ROOT_VALUE, SVG_MIME_TYPE, ServerErrorResponse, SetDeltaChange, SimpleStorageObject, SlashPathPathMatcherPartCode, StorageObject, StorageObjectUtility, StoredDataError, SyncState, TIFF_MIME_TYPE, 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, build, cachedGetter, calculateExpirationDate, capLatValue, capitalizeFirstLetter, caseInsensitiveFilterByIndexOfDecisionFactory, caseInsensitiveString, catchAllHandlerKey, chainMapFunction, chainMapSameFunctions, characterPrefixSuffixInstance, checkAnyHaveExpired, checkAtleastOneNotExpired, coerceToEmailParticipants, combineMaps, compareEqualityWithValueFromItemsFunction, compareEqualityWithValueFromItemsFunctionFactory, compareFnOrder, compareWithMappedValuesFunction, computeNextFractionalHour, computeNextFreeIndexFunction, computeNextFreeIndexOnSortedValuesFunction, concatArrays, concatArraysUnique, containsAllStringsAnyCase, containsAllValues, containsAnyStringAnyCase, containsAnyValue, containsAnyValueFromSet, containsNoValueFromSet, containsNoneOfValue, containsStringAnyCase, convertEmailParticipantStringToParticipant, convertMaybeToArray, convertMaybeToNonEmptyArray, convertParticipantToEmailParticipantString, convertToArray, copyArray, copyField, copyLatLngBound, copyLatLngPoint, copyObject, copySetAndDo, countAllInNestedArray, countPOJOKeys, countPOJOKeysFunction, cronExpressionRepeatingEveryNMinutes, cssClassesSet, cutString, cutStringFunction, cutToPrecision, cutValueToInteger, cutValueToPrecision, cutValueToPrecisionFunction, dateFromDateOrTimeMillisecondsNumber, dateFromDateOrTimeSecondsNumber, dateFromLogicalDate, dateFromMinuteOfDay, dateOrMillisecondsToDate, dateToHoursAndMinutes, dateToMinuteOfDay, dayOfWeek, daysOfWeekArray, daysOfWeekFromEnabledDays, daysOfWeekNameFunction, daysOfWeekNameMap, decisionFunction, decodeHashedValues, decodeHashedValuesWithDecodeMap, decodeModelKeyTypePair, defaultFilterFromPOJOFunctionNoCopy, defaultForwardFunctionFactory, defaultLatLngPoint, defaultLatLngString, dencodeBitwiseSet, depthFirstExploreTreeTraversalFactoryFunction, diffLatLngBoundPoints, diffLatLngPoints, documentFileExtensionForMimeType, dollarAmountString, dollarAmountStringWithUnitFunction, e164PhoneNumberExtensionPair, e164PhoneNumberFromE164PhoneNumberExtensionPair, enabledDaysFromDaysOfWeek, encodeBitwiseSet, encodeModelKeyTypePair, errorMessageContainsString, errorMessageContainsStringFunction, escapeStringCharactersFunction, escapeStringForRegex, excludeValues, excludeValuesFromArray, excludeValuesFromSet, existsInIterable, expandArrayMapTuples, expandArrayValueTuples, expandFlattenTreeFunction, expandIndexSet, expandSlashPathPathMatcherPartToDecisionFunctions, expandTreeFunction, expandTrees, expirationDetails, 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, flattenTree, flattenTreeToArray, flattenTreeToArrayFunction, flattenWhitespace, forEachInIterable, forEachKeyValue, forEachKeyValueOnPOJOFunction, forEachWithArray, forwardFunction, fractionalHoursToMinutes, generateIfDoesNotExist, 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, hourToFractionalHour, hoursAndMinutesToString, idBatchFactory, imageFileExtensionForMimeType, 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, isFalseBooleanKeyArray, isFinalPage, isGetter, 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, 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, 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, mergeArrays, mergeArraysIntoArray, mergeFilterFunctions, mergeModifiers, mergeObjects, mergeObjectsFunction, mergeSlashPaths, messageFromError, millisecondsToMinutesAndSeconds, 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, neMostLatLngPoint, nearestDivisibleValues, numberStringDencoder, numberStringDencoderDecodedNumberValueFunction, numberStringDencoderEncodedStringValueFunction, numberStringDencoderFunction, objectCopyFactory, objectDeltaArrayCompressor, objectFieldEqualityChecker, objectFlatMergeMatrix, objectHasKey, objectHasKeys, objectHasNoKeys, objectIsEmpty, objectKeyEqualityComparatorFunction, objectKeysEqualityComparatorFunction, objectMergeMatrix, objectToMap, overlapsLatLngBoundFunction, overrideInObject, overrideInObjectFunctionFactory, padStartFunction, pairGroupValues, parseISO8601DayStringToUTCDate, partialServerError, passThrough, percentNumberFromDecimal, percentNumberToDecimal, performAsyncTask, performAsyncTasks, performBatchLoop, performMakeLoop, performTaskCountLoop, performTaskLoop, performTasksFromFactoryInParallelFunction, performTasksInParallel, performTasksInParallelFunction, pickOneRandomly, poll, primativeKeyDencoder, primativeKeyDencoderMap, primativeKeyStringDencoder, primativeValuesDelta, promiseReference, protectedFactory, pushArrayItemsIntoArray, pushElementOntoArray, pushItemOrArrayItemsIntoArray, randomArrayFactory, randomArrayIndex, randomBoolean, randomEmailFactory, randomFromArrayFactory, randomLatLngFactory, randomLatLngFromCenterFactory, randomNumber, randomNumberFactory, randomPhoneNumberFactory, randomPickFactory, range, rangedIndexedValuesArrayAccessorFactory, rangedIndexedValuesArrayAccessorInfoFactory, readBooleanKeySafetyWrap, readDomainFromEmailAddress, readDomainsFromEmailAddresses, readEmailDomainFromUrlOrEmailAddress, readIndexNumber, readKeysFrom, readKeysFromFilterUniqueFunctionAdditionalKeys, readKeysFromFilterUniqueFunctionAdditionalKeysInput, readKeysFunction, readKeysSetFrom, readKeysSetFunction, readKeysToMap, readModelKey, readModelKeyFromObject, readModelKeys, readModelKeysFromObjects, readMultipleKeysToMap, readPortNumber, readUniqueModelKey, readWebsiteProtocol, readableError, readableStreamToBase64, readableStreamToBuffer, readableStreamToStringFunction, rectangleOverlapsRectangle, reduceBooleansFn, reduceBooleansWithAnd, reduceBooleansWithAndFn, reduceBooleansWithOr, reduceBooleansWithOrFn, reduceNumbers, reduceNumbersFn, reduceNumbersWithAdd, reduceNumbersWithAddFn, reduceNumbersWithMax, reduceNumbersWithMaxFn, reduceNumbersWithMin, reduceNumbersWithMinFn, removeByKeyFromBooleanKeyArray, removeCharactersAfterFirstCharacterOccurence, removeCharactersAfterFirstCharacterOccurenceFunction, removeExtensionFromPhoneNumber, removeFromBooleanKeyArray, removeFromSet, removeFromSetCopy, removeHttpFromUrl, removeModelsWithKey, removeModelsWithSameKey, removeModifiers, removeTrailingFileTypeSeparators, removeTrailingSlashes, 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, searchStringFilterFunction, secondsToMinutesAndSeconds, 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, stringToBoolean, stringToLowercaseFunction, stringToUppercaseFunction, stringTrimFunction, sumOfIntegersBetween, swMostLatLngPoint, symmetricDifferenceArray, symmetricDifferenceArrayBetweenSets, symmetricDifferenceWithModels, takeFront, takeLast, takeValuesFromIterable, telUrlString, telUrlStringForE164PhoneNumberPair, terminatingFactoryFromArray, throwKeyIsRequired, timePeriodCounter, toAbsoluteSlashPathStartType, toCaseInsensitiveStringArray, toMinuteOfDay, toModelFieldConversions, toModelMapFunctions, toReadableError, toRelativeSlashPathStartType, toggleInSet, toggleInSetCopy, toggleTimerRunning, transformNumberFunction, transformNumberFunctionConfig, transformStringFunction, transformStringFunctionConfig, transformStrings, trimArray, trueOrFalseString, 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 };
|