@tmagic/table 1.8.0-beta.8 → 1.8.0-manmanyu.10

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.
@@ -11,6 +11,220 @@
11
11
  __esModule: { value: true },
12
12
  [Symbol.toStringTag]: { value: "Module" }
13
13
  });
14
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheClear.js
15
+ /**
16
+ * Removes all key-value entries from the list cache.
17
+ *
18
+ * @private
19
+ * @name clear
20
+ * @memberOf ListCache
21
+ */
22
+ function listCacheClear() {
23
+ this.__data__ = [];
24
+ this.size = 0;
25
+ }
26
+ //#endregion
27
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/eq.js
28
+ /**
29
+ * Performs a
30
+ * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
31
+ * comparison between two values to determine if they are equivalent.
32
+ *
33
+ * @static
34
+ * @memberOf _
35
+ * @since 4.0.0
36
+ * @category Lang
37
+ * @param {*} value The value to compare.
38
+ * @param {*} other The other value to compare.
39
+ * @returns {boolean} Returns `true` if the values are equivalent, else `false`.
40
+ * @example
41
+ *
42
+ * var object = { 'a': 1 };
43
+ * var other = { 'a': 1 };
44
+ *
45
+ * _.eq(object, object);
46
+ * // => true
47
+ *
48
+ * _.eq(object, other);
49
+ * // => false
50
+ *
51
+ * _.eq('a', 'a');
52
+ * // => true
53
+ *
54
+ * _.eq('a', Object('a'));
55
+ * // => false
56
+ *
57
+ * _.eq(NaN, NaN);
58
+ * // => true
59
+ */
60
+ function eq(value, other) {
61
+ return value === other || value !== value && other !== other;
62
+ }
63
+ //#endregion
64
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_assocIndexOf.js
65
+ /**
66
+ * Gets the index at which the `key` is found in `array` of key-value pairs.
67
+ *
68
+ * @private
69
+ * @param {Array} array The array to inspect.
70
+ * @param {*} key The key to search for.
71
+ * @returns {number} Returns the index of the matched value, else `-1`.
72
+ */
73
+ function assocIndexOf(array, key) {
74
+ var length = array.length;
75
+ while (length--) if (eq(array[length][0], key)) return length;
76
+ return -1;
77
+ }
78
+ //#endregion
79
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheDelete.js
80
+ /** Built-in value references. */
81
+ var splice = Array.prototype.splice;
82
+ /**
83
+ * Removes `key` and its value from the list cache.
84
+ *
85
+ * @private
86
+ * @name delete
87
+ * @memberOf ListCache
88
+ * @param {string} key The key of the value to remove.
89
+ * @returns {boolean} Returns `true` if the entry was removed, else `false`.
90
+ */
91
+ function listCacheDelete(key) {
92
+ var data = this.__data__, index = assocIndexOf(data, key);
93
+ if (index < 0) return false;
94
+ if (index == data.length - 1) data.pop();
95
+ else splice.call(data, index, 1);
96
+ --this.size;
97
+ return true;
98
+ }
99
+ //#endregion
100
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheGet.js
101
+ /**
102
+ * Gets the list cache value for `key`.
103
+ *
104
+ * @private
105
+ * @name get
106
+ * @memberOf ListCache
107
+ * @param {string} key The key of the value to get.
108
+ * @returns {*} Returns the entry value.
109
+ */
110
+ function listCacheGet(key) {
111
+ var data = this.__data__, index = assocIndexOf(data, key);
112
+ return index < 0 ? void 0 : data[index][1];
113
+ }
114
+ //#endregion
115
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheHas.js
116
+ /**
117
+ * Checks if a list cache value for `key` exists.
118
+ *
119
+ * @private
120
+ * @name has
121
+ * @memberOf ListCache
122
+ * @param {string} key The key of the entry to check.
123
+ * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
124
+ */
125
+ function listCacheHas(key) {
126
+ return assocIndexOf(this.__data__, key) > -1;
127
+ }
128
+ //#endregion
129
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheSet.js
130
+ /**
131
+ * Sets the list cache `key` to `value`.
132
+ *
133
+ * @private
134
+ * @name set
135
+ * @memberOf ListCache
136
+ * @param {string} key The key of the value to set.
137
+ * @param {*} value The value to set.
138
+ * @returns {Object} Returns the list cache instance.
139
+ */
140
+ function listCacheSet(key, value) {
141
+ var data = this.__data__, index = assocIndexOf(data, key);
142
+ if (index < 0) {
143
+ ++this.size;
144
+ data.push([key, value]);
145
+ } else data[index][1] = value;
146
+ return this;
147
+ }
148
+ //#endregion
149
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_ListCache.js
150
+ /**
151
+ * Creates an list cache object.
152
+ *
153
+ * @private
154
+ * @constructor
155
+ * @param {Array} [entries] The key-value pairs to cache.
156
+ */
157
+ function ListCache(entries) {
158
+ var index = -1, length = entries == null ? 0 : entries.length;
159
+ this.clear();
160
+ while (++index < length) {
161
+ var entry = entries[index];
162
+ this.set(entry[0], entry[1]);
163
+ }
164
+ }
165
+ ListCache.prototype.clear = listCacheClear;
166
+ ListCache.prototype["delete"] = listCacheDelete;
167
+ ListCache.prototype.get = listCacheGet;
168
+ ListCache.prototype.has = listCacheHas;
169
+ ListCache.prototype.set = listCacheSet;
170
+ //#endregion
171
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackClear.js
172
+ /**
173
+ * Removes all key-value entries from the stack.
174
+ *
175
+ * @private
176
+ * @name clear
177
+ * @memberOf Stack
178
+ */
179
+ function stackClear() {
180
+ this.__data__ = new ListCache();
181
+ this.size = 0;
182
+ }
183
+ //#endregion
184
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackDelete.js
185
+ /**
186
+ * Removes `key` and its value from the stack.
187
+ *
188
+ * @private
189
+ * @name delete
190
+ * @memberOf Stack
191
+ * @param {string} key The key of the value to remove.
192
+ * @returns {boolean} Returns `true` if the entry was removed, else `false`.
193
+ */
194
+ function stackDelete(key) {
195
+ var data = this.__data__, result = data["delete"](key);
196
+ this.size = data.size;
197
+ return result;
198
+ }
199
+ //#endregion
200
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackGet.js
201
+ /**
202
+ * Gets the stack value for `key`.
203
+ *
204
+ * @private
205
+ * @name get
206
+ * @memberOf Stack
207
+ * @param {string} key The key of the value to get.
208
+ * @returns {*} Returns the entry value.
209
+ */
210
+ function stackGet(key) {
211
+ return this.__data__.get(key);
212
+ }
213
+ //#endregion
214
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackHas.js
215
+ /**
216
+ * Checks if a stack value for `key` exists.
217
+ *
218
+ * @private
219
+ * @name has
220
+ * @memberOf Stack
221
+ * @param {string} key The key of the entry to check.
222
+ * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
223
+ */
224
+ function stackHas(key) {
225
+ return this.__data__.has(key);
226
+ }
227
+ //#endregion
14
228
  //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_freeGlobal.js
15
229
  /** Detect free variable `global` from Node.js. */
16
230
  var freeGlobal = typeof global == "object" && global && global.Object === Object && global;
@@ -92,110 +306,55 @@
92
306
  return symToStringTag && symToStringTag in Object(value) ? getRawTag(value) : objectToString(value);
93
307
  }
94
308
  //#endregion
95
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObjectLike.js
309
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObject.js
96
310
  /**
97
- * Checks if `value` is object-like. A value is object-like if it's not `null`
98
- * and has a `typeof` result of "object".
311
+ * Checks if `value` is the
312
+ * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)
313
+ * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
99
314
  *
100
315
  * @static
101
316
  * @memberOf _
102
- * @since 4.0.0
317
+ * @since 0.1.0
103
318
  * @category Lang
104
319
  * @param {*} value The value to check.
105
- * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
320
+ * @returns {boolean} Returns `true` if `value` is an object, else `false`.
106
321
  * @example
107
322
  *
108
- * _.isObjectLike({});
323
+ * _.isObject({});
109
324
  * // => true
110
325
  *
111
- * _.isObjectLike([1, 2, 3]);
326
+ * _.isObject([1, 2, 3]);
112
327
  * // => true
113
328
  *
114
- * _.isObjectLike(_.noop);
115
- * // => false
329
+ * _.isObject(_.noop);
330
+ * // => true
116
331
  *
117
- * _.isObjectLike(null);
332
+ * _.isObject(null);
118
333
  * // => false
119
334
  */
120
- function isObjectLike(value) {
121
- return value != null && typeof value == "object";
335
+ function isObject(value) {
336
+ var type = typeof value;
337
+ return value != null && (type == "object" || type == "function");
122
338
  }
123
339
  //#endregion
124
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArray.js
340
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isFunction.js
341
+ /** `Object#toString` result references. */
342
+ var asyncTag = "[object AsyncFunction]", funcTag$2 = "[object Function]", genTag$1 = "[object GeneratorFunction]", proxyTag = "[object Proxy]";
125
343
  /**
126
- * Checks if `value` is classified as an `Array` object.
344
+ * Checks if `value` is classified as a `Function` object.
127
345
  *
128
346
  * @static
129
347
  * @memberOf _
130
348
  * @since 0.1.0
131
349
  * @category Lang
132
350
  * @param {*} value The value to check.
133
- * @returns {boolean} Returns `true` if `value` is an array, else `false`.
351
+ * @returns {boolean} Returns `true` if `value` is a function, else `false`.
134
352
  * @example
135
353
  *
136
- * _.isArray([1, 2, 3]);
354
+ * _.isFunction(_);
137
355
  * // => true
138
356
  *
139
- * _.isArray(document.body.children);
140
- * // => false
141
- *
142
- * _.isArray('abc');
143
- * // => false
144
- *
145
- * _.isArray(_.noop);
146
- * // => false
147
- */
148
- var isArray = Array.isArray;
149
- //#endregion
150
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObject.js
151
- /**
152
- * Checks if `value` is the
153
- * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)
154
- * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
155
- *
156
- * @static
157
- * @memberOf _
158
- * @since 0.1.0
159
- * @category Lang
160
- * @param {*} value The value to check.
161
- * @returns {boolean} Returns `true` if `value` is an object, else `false`.
162
- * @example
163
- *
164
- * _.isObject({});
165
- * // => true
166
- *
167
- * _.isObject([1, 2, 3]);
168
- * // => true
169
- *
170
- * _.isObject(_.noop);
171
- * // => true
172
- *
173
- * _.isObject(null);
174
- * // => false
175
- */
176
- function isObject(value) {
177
- var type = typeof value;
178
- return value != null && (type == "object" || type == "function");
179
- }
180
- //#endregion
181
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isFunction.js
182
- /** `Object#toString` result references. */
183
- var asyncTag = "[object AsyncFunction]", funcTag$2 = "[object Function]", genTag$1 = "[object GeneratorFunction]", proxyTag = "[object Proxy]";
184
- /**
185
- * Checks if `value` is classified as a `Function` object.
186
- *
187
- * @static
188
- * @memberOf _
189
- * @since 0.1.0
190
- * @category Lang
191
- * @param {*} value The value to check.
192
- * @returns {boolean} Returns `true` if `value` is a function, else `false`.
193
- * @example
194
- *
195
- * _.isFunction(_);
196
- * // => true
197
- *
198
- * _.isFunction(/abc/);
357
+ * _.isFunction(/abc/);
199
358
  * // => false
200
359
  */
201
360
  function isFunction(value) {
@@ -303,1092 +462,872 @@
303
462
  return baseIsNative(value) ? value : void 0;
304
463
  }
305
464
  //#endregion
306
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_WeakMap.js
307
- var WeakMap = getNative(root, "WeakMap");
465
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Map.js
466
+ var Map = getNative(root, "Map");
308
467
  //#endregion
309
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseCreate.js
310
- /** Built-in value references. */
311
- var objectCreate = Object.create;
468
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nativeCreate.js
469
+ var nativeCreate = getNative(Object, "create");
470
+ //#endregion
471
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashClear.js
312
472
  /**
313
- * The base implementation of `_.create` without support for assigning
314
- * properties to the created object.
473
+ * Removes all key-value entries from the hash.
315
474
  *
316
475
  * @private
317
- * @param {Object} proto The object to inherit from.
318
- * @returns {Object} Returns the new object.
476
+ * @name clear
477
+ * @memberOf Hash
319
478
  */
320
- var baseCreate = function() {
321
- function object() {}
322
- return function(proto) {
323
- if (!isObject(proto)) return {};
324
- if (objectCreate) return objectCreate(proto);
325
- object.prototype = proto;
326
- var result = new object();
327
- object.prototype = void 0;
328
- return result;
329
- };
330
- }();
479
+ function hashClear() {
480
+ this.__data__ = nativeCreate ? nativeCreate(null) : {};
481
+ this.size = 0;
482
+ }
331
483
  //#endregion
332
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyArray.js
484
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashDelete.js
333
485
  /**
334
- * Copies the values of `source` to `array`.
486
+ * Removes `key` and its value from the hash.
335
487
  *
336
488
  * @private
337
- * @param {Array} source The array to copy values from.
338
- * @param {Array} [array=[]] The array to copy values to.
339
- * @returns {Array} Returns `array`.
489
+ * @name delete
490
+ * @memberOf Hash
491
+ * @param {Object} hash The hash to modify.
492
+ * @param {string} key The key of the value to remove.
493
+ * @returns {boolean} Returns `true` if the entry was removed, else `false`.
340
494
  */
341
- function copyArray(source, array) {
342
- var index = -1, length = source.length;
343
- array || (array = Array(length));
344
- while (++index < length) array[index] = source[index];
345
- return array;
495
+ function hashDelete(key) {
496
+ var result = this.has(key) && delete this.__data__[key];
497
+ this.size -= result ? 1 : 0;
498
+ return result;
346
499
  }
347
500
  //#endregion
348
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_defineProperty.js
349
- var defineProperty = function() {
350
- try {
351
- var func = getNative(Object, "defineProperty");
352
- func({}, "", {});
353
- return func;
354
- } catch (e) {}
355
- }();
356
- //#endregion
357
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayEach.js
501
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashGet.js
502
+ /** Used to stand-in for `undefined` hash values. */
503
+ var HASH_UNDEFINED$1 = "__lodash_hash_undefined__";
504
+ /** Used to check objects for own properties. */
505
+ var hasOwnProperty$7 = Object.prototype.hasOwnProperty;
358
506
  /**
359
- * A specialized version of `_.forEach` for arrays without support for
360
- * iteratee shorthands.
507
+ * Gets the hash value for `key`.
361
508
  *
362
509
  * @private
363
- * @param {Array} [array] The array to iterate over.
364
- * @param {Function} iteratee The function invoked per iteration.
365
- * @returns {Array} Returns `array`.
510
+ * @name get
511
+ * @memberOf Hash
512
+ * @param {string} key The key of the value to get.
513
+ * @returns {*} Returns the entry value.
366
514
  */
367
- function arrayEach(array, iteratee) {
368
- var index = -1, length = array == null ? 0 : array.length;
369
- while (++index < length) if (iteratee(array[index], index, array) === false) break;
370
- return array;
515
+ function hashGet(key) {
516
+ var data = this.__data__;
517
+ if (nativeCreate) {
518
+ var result = data[key];
519
+ return result === HASH_UNDEFINED$1 ? void 0 : result;
520
+ }
521
+ return hasOwnProperty$7.call(data, key) ? data[key] : void 0;
371
522
  }
372
523
  //#endregion
373
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isIndex.js
374
- /** Used as references for various `Number` constants. */
375
- var MAX_SAFE_INTEGER$1 = 9007199254740991;
376
- /** Used to detect unsigned integer values. */
377
- var reIsUint = /^(?:0|[1-9]\d*)$/;
524
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashHas.js
525
+ /** Used to check objects for own properties. */
526
+ var hasOwnProperty$6 = Object.prototype.hasOwnProperty;
378
527
  /**
379
- * Checks if `value` is a valid array-like index.
528
+ * Checks if a hash value for `key` exists.
380
529
  *
381
530
  * @private
382
- * @param {*} value The value to check.
383
- * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
384
- * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
531
+ * @name has
532
+ * @memberOf Hash
533
+ * @param {string} key The key of the entry to check.
534
+ * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
385
535
  */
386
- function isIndex(value, length) {
387
- var type = typeof value;
388
- length = length == null ? MAX_SAFE_INTEGER$1 : length;
389
- return !!length && (type == "number" || type != "symbol" && reIsUint.test(value)) && value > -1 && value % 1 == 0 && value < length;
536
+ function hashHas(key) {
537
+ var data = this.__data__;
538
+ return nativeCreate ? data[key] !== void 0 : hasOwnProperty$6.call(data, key);
390
539
  }
391
540
  //#endregion
392
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseAssignValue.js
541
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashSet.js
542
+ /** Used to stand-in for `undefined` hash values. */
543
+ var HASH_UNDEFINED = "__lodash_hash_undefined__";
393
544
  /**
394
- * The base implementation of `assignValue` and `assignMergeValue` without
395
- * value checks.
545
+ * Sets the hash `key` to `value`.
396
546
  *
397
547
  * @private
398
- * @param {Object} object The object to modify.
399
- * @param {string} key The key of the property to assign.
400
- * @param {*} value The value to assign.
548
+ * @name set
549
+ * @memberOf Hash
550
+ * @param {string} key The key of the value to set.
551
+ * @param {*} value The value to set.
552
+ * @returns {Object} Returns the hash instance.
401
553
  */
402
- function baseAssignValue(object, key, value) {
403
- if (key == "__proto__" && defineProperty) defineProperty(object, key, {
404
- "configurable": true,
405
- "enumerable": true,
406
- "value": value,
407
- "writable": true
408
- });
409
- else object[key] = value;
554
+ function hashSet(key, value) {
555
+ var data = this.__data__;
556
+ this.size += this.has(key) ? 0 : 1;
557
+ data[key] = nativeCreate && value === void 0 ? HASH_UNDEFINED : value;
558
+ return this;
410
559
  }
411
560
  //#endregion
412
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/eq.js
561
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Hash.js
413
562
  /**
414
- * Performs a
415
- * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
416
- * comparison between two values to determine if they are equivalent.
417
- *
418
- * @static
419
- * @memberOf _
420
- * @since 4.0.0
421
- * @category Lang
422
- * @param {*} value The value to compare.
423
- * @param {*} other The other value to compare.
424
- * @returns {boolean} Returns `true` if the values are equivalent, else `false`.
425
- * @example
426
- *
427
- * var object = { 'a': 1 };
428
- * var other = { 'a': 1 };
429
- *
430
- * _.eq(object, object);
431
- * // => true
432
- *
433
- * _.eq(object, other);
434
- * // => false
435
- *
436
- * _.eq('a', 'a');
437
- * // => true
438
- *
439
- * _.eq('a', Object('a'));
440
- * // => false
563
+ * Creates a hash object.
441
564
  *
442
- * _.eq(NaN, NaN);
443
- * // => true
565
+ * @private
566
+ * @constructor
567
+ * @param {Array} [entries] The key-value pairs to cache.
444
568
  */
445
- function eq(value, other) {
446
- return value === other || value !== value && other !== other;
569
+ function Hash(entries) {
570
+ var index = -1, length = entries == null ? 0 : entries.length;
571
+ this.clear();
572
+ while (++index < length) {
573
+ var entry = entries[index];
574
+ this.set(entry[0], entry[1]);
575
+ }
447
576
  }
577
+ Hash.prototype.clear = hashClear;
578
+ Hash.prototype["delete"] = hashDelete;
579
+ Hash.prototype.get = hashGet;
580
+ Hash.prototype.has = hashHas;
581
+ Hash.prototype.set = hashSet;
448
582
  //#endregion
449
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_assignValue.js
450
- /** Used to check objects for own properties. */
451
- var hasOwnProperty$7 = Object.prototype.hasOwnProperty;
583
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheClear.js
452
584
  /**
453
- * Assigns `value` to `key` of `object` if the existing value is not equivalent
454
- * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
455
- * for equality comparisons.
585
+ * Removes all key-value entries from the map.
456
586
  *
457
587
  * @private
458
- * @param {Object} object The object to modify.
459
- * @param {string} key The key of the property to assign.
460
- * @param {*} value The value to assign.
588
+ * @name clear
589
+ * @memberOf MapCache
461
590
  */
462
- function assignValue(object, key, value) {
463
- var objValue = object[key];
464
- if (!(hasOwnProperty$7.call(object, key) && eq(objValue, value)) || value === void 0 && !(key in object)) baseAssignValue(object, key, value);
465
- }
466
- //#endregion
467
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyObject.js
468
- /**
469
- * Copies properties of `source` to `object`.
470
- *
471
- * @private
472
- * @param {Object} source The object to copy properties from.
473
- * @param {Array} props The property identifiers to copy.
474
- * @param {Object} [object={}] The object to copy properties to.
475
- * @param {Function} [customizer] The function to customize copied values.
476
- * @returns {Object} Returns `object`.
477
- */
478
- function copyObject(source, props, object, customizer) {
479
- var isNew = !object;
480
- object || (object = {});
481
- var index = -1, length = props.length;
482
- while (++index < length) {
483
- var key = props[index];
484
- var newValue = customizer ? customizer(object[key], source[key], key, object, source) : void 0;
485
- if (newValue === void 0) newValue = source[key];
486
- if (isNew) baseAssignValue(object, key, newValue);
487
- else assignValue(object, key, newValue);
488
- }
489
- return object;
490
- }
491
- //#endregion
492
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isLength.js
493
- /** Used as references for various `Number` constants. */
494
- var MAX_SAFE_INTEGER = 9007199254740991;
495
- /**
496
- * Checks if `value` is a valid array-like length.
497
- *
498
- * **Note:** This method is loosely based on
499
- * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
500
- *
501
- * @static
502
- * @memberOf _
503
- * @since 4.0.0
504
- * @category Lang
505
- * @param {*} value The value to check.
506
- * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
507
- * @example
508
- *
509
- * _.isLength(3);
510
- * // => true
511
- *
512
- * _.isLength(Number.MIN_VALUE);
513
- * // => false
514
- *
515
- * _.isLength(Infinity);
516
- * // => false
517
- *
518
- * _.isLength('3');
519
- * // => false
520
- */
521
- function isLength(value) {
522
- return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
523
- }
524
- //#endregion
525
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArrayLike.js
526
- /**
527
- * Checks if `value` is array-like. A value is considered array-like if it's
528
- * not a function and has a `value.length` that's an integer greater than or
529
- * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
530
- *
531
- * @static
532
- * @memberOf _
533
- * @since 4.0.0
534
- * @category Lang
535
- * @param {*} value The value to check.
536
- * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
537
- * @example
538
- *
539
- * _.isArrayLike([1, 2, 3]);
540
- * // => true
541
- *
542
- * _.isArrayLike(document.body.children);
543
- * // => true
544
- *
545
- * _.isArrayLike('abc');
546
- * // => true
547
- *
548
- * _.isArrayLike(_.noop);
549
- * // => false
550
- */
551
- function isArrayLike(value) {
552
- return value != null && isLength(value.length) && !isFunction(value);
553
- }
554
- //#endregion
555
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isPrototype.js
556
- /** Used for built-in method references. */
557
- var objectProto$1 = Object.prototype;
558
- /**
559
- * Checks if `value` is likely a prototype object.
560
- *
561
- * @private
562
- * @param {*} value The value to check.
563
- * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.
564
- */
565
- function isPrototype(value) {
566
- var Ctor = value && value.constructor;
567
- return value === (typeof Ctor == "function" && Ctor.prototype || objectProto$1);
568
- }
569
- //#endregion
570
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseTimes.js
571
- /**
572
- * The base implementation of `_.times` without support for iteratee shorthands
573
- * or max array length checks.
574
- *
575
- * @private
576
- * @param {number} n The number of times to invoke `iteratee`.
577
- * @param {Function} iteratee The function invoked per iteration.
578
- * @returns {Array} Returns the array of results.
579
- */
580
- function baseTimes(n, iteratee) {
581
- var index = -1, result = Array(n);
582
- while (++index < n) result[index] = iteratee(index);
583
- return result;
584
- }
585
- //#endregion
586
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseIsArguments.js
587
- /** `Object#toString` result references. */
588
- var argsTag$2 = "[object Arguments]";
589
- /**
590
- * The base implementation of `_.isArguments`.
591
- *
592
- * @private
593
- * @param {*} value The value to check.
594
- * @returns {boolean} Returns `true` if `value` is an `arguments` object,
595
- */
596
- function baseIsArguments(value) {
597
- return isObjectLike(value) && baseGetTag(value) == argsTag$2;
598
- }
599
- //#endregion
600
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArguments.js
601
- /** Used for built-in method references. */
602
- var objectProto = Object.prototype;
603
- /** Used to check objects for own properties. */
604
- var hasOwnProperty$6 = objectProto.hasOwnProperty;
605
- /** Built-in value references. */
606
- var propertyIsEnumerable$1 = objectProto.propertyIsEnumerable;
607
- /**
608
- * Checks if `value` is likely an `arguments` object.
609
- *
610
- * @static
611
- * @memberOf _
612
- * @since 0.1.0
613
- * @category Lang
614
- * @param {*} value The value to check.
615
- * @returns {boolean} Returns `true` if `value` is an `arguments` object,
616
- * else `false`.
617
- * @example
618
- *
619
- * _.isArguments(function() { return arguments; }());
620
- * // => true
621
- *
622
- * _.isArguments([1, 2, 3]);
623
- * // => false
624
- */
625
- var isArguments = baseIsArguments(function() {
626
- return arguments;
627
- }()) ? baseIsArguments : function(value) {
628
- return isObjectLike(value) && hasOwnProperty$6.call(value, "callee") && !propertyIsEnumerable$1.call(value, "callee");
629
- };
630
- //#endregion
631
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/stubFalse.js
632
- /**
633
- * This method returns `false`.
634
- *
635
- * @static
636
- * @memberOf _
637
- * @since 4.13.0
638
- * @category Util
639
- * @returns {boolean} Returns `false`.
640
- * @example
641
- *
642
- * _.times(2, _.stubFalse);
643
- * // => [false, false]
644
- */
645
- function stubFalse() {
646
- return false;
647
- }
648
- //#endregion
649
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isBuffer.js
650
- /** Detect free variable `exports`. */
651
- var freeExports$2 = typeof exports == "object" && exports && !exports.nodeType && exports;
652
- /** Detect free variable `module`. */
653
- var freeModule$2 = freeExports$2 && typeof module == "object" && module && !module.nodeType && module;
654
- /** Built-in value references. */
655
- var Buffer$1 = freeModule$2 && freeModule$2.exports === freeExports$2 ? root.Buffer : void 0;
656
- /**
657
- * Checks if `value` is a buffer.
658
- *
659
- * @static
660
- * @memberOf _
661
- * @since 4.3.0
662
- * @category Lang
663
- * @param {*} value The value to check.
664
- * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
665
- * @example
666
- *
667
- * _.isBuffer(new Buffer(2));
668
- * // => true
669
- *
670
- * _.isBuffer(new Uint8Array(2));
671
- * // => false
672
- */
673
- var isBuffer = (Buffer$1 ? Buffer$1.isBuffer : void 0) || stubFalse;
674
- //#endregion
675
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseIsTypedArray.js
676
- /** `Object#toString` result references. */
677
- var argsTag$1 = "[object Arguments]", arrayTag$1 = "[object Array]", boolTag$2 = "[object Boolean]", dateTag$2 = "[object Date]", errorTag$1 = "[object Error]", funcTag$1 = "[object Function]", mapTag$4 = "[object Map]", numberTag$2 = "[object Number]", objectTag$2 = "[object Object]", regexpTag$2 = "[object RegExp]", setTag$4 = "[object Set]", stringTag$2 = "[object String]", weakMapTag$2 = "[object WeakMap]";
678
- var arrayBufferTag$2 = "[object ArrayBuffer]", dataViewTag$3 = "[object DataView]", float32Tag$2 = "[object Float32Array]", float64Tag$2 = "[object Float64Array]", int8Tag$2 = "[object Int8Array]", int16Tag$2 = "[object Int16Array]", int32Tag$2 = "[object Int32Array]", uint8Tag$2 = "[object Uint8Array]", uint8ClampedTag$2 = "[object Uint8ClampedArray]", uint16Tag$2 = "[object Uint16Array]", uint32Tag$2 = "[object Uint32Array]";
679
- /** Used to identify `toStringTag` values of typed arrays. */
680
- var typedArrayTags = {};
681
- typedArrayTags[float32Tag$2] = typedArrayTags[float64Tag$2] = typedArrayTags[int8Tag$2] = typedArrayTags[int16Tag$2] = typedArrayTags[int32Tag$2] = typedArrayTags[uint8Tag$2] = typedArrayTags[uint8ClampedTag$2] = typedArrayTags[uint16Tag$2] = typedArrayTags[uint32Tag$2] = true;
682
- typedArrayTags[argsTag$1] = typedArrayTags[arrayTag$1] = typedArrayTags[arrayBufferTag$2] = typedArrayTags[boolTag$2] = typedArrayTags[dataViewTag$3] = typedArrayTags[dateTag$2] = typedArrayTags[errorTag$1] = typedArrayTags[funcTag$1] = typedArrayTags[mapTag$4] = typedArrayTags[numberTag$2] = typedArrayTags[objectTag$2] = typedArrayTags[regexpTag$2] = typedArrayTags[setTag$4] = typedArrayTags[stringTag$2] = typedArrayTags[weakMapTag$2] = false;
683
- /**
684
- * The base implementation of `_.isTypedArray` without Node.js optimizations.
685
- *
686
- * @private
687
- * @param {*} value The value to check.
688
- * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
689
- */
690
- function baseIsTypedArray(value) {
691
- return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[baseGetTag(value)];
692
- }
693
- //#endregion
694
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseUnary.js
695
- /**
696
- * The base implementation of `_.unary` without support for storing metadata.
697
- *
698
- * @private
699
- * @param {Function} func The function to cap arguments for.
700
- * @returns {Function} Returns the new capped function.
701
- */
702
- function baseUnary(func) {
703
- return function(value) {
704
- return func(value);
591
+ function mapCacheClear() {
592
+ this.size = 0;
593
+ this.__data__ = {
594
+ "hash": new Hash(),
595
+ "map": new (Map || ListCache)(),
596
+ "string": new Hash()
705
597
  };
706
598
  }
707
599
  //#endregion
708
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nodeUtil.js
709
- /** Detect free variable `exports`. */
710
- var freeExports$1 = typeof exports == "object" && exports && !exports.nodeType && exports;
711
- /** Detect free variable `module`. */
712
- var freeModule$1 = freeExports$1 && typeof module == "object" && module && !module.nodeType && module;
713
- /** Detect free variable `process` from Node.js. */
714
- var freeProcess = freeModule$1 && freeModule$1.exports === freeExports$1 && freeGlobal.process;
715
- /** Used to access faster Node.js helpers. */
716
- var nodeUtil = function() {
717
- try {
718
- var types = freeModule$1 && freeModule$1.require && freeModule$1.require("util").types;
719
- if (types) return types;
720
- return freeProcess && freeProcess.binding && freeProcess.binding("util");
721
- } catch (e) {}
722
- }();
723
- //#endregion
724
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isTypedArray.js
725
- var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
726
- /**
727
- * Checks if `value` is classified as a typed array.
728
- *
729
- * @static
730
- * @memberOf _
731
- * @since 3.0.0
732
- * @category Lang
733
- * @param {*} value The value to check.
734
- * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
735
- * @example
736
- *
737
- * _.isTypedArray(new Uint8Array);
738
- * // => true
739
- *
740
- * _.isTypedArray([]);
741
- * // => false
742
- */
743
- var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;
744
- //#endregion
745
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayLikeKeys.js
746
- /** Used to check objects for own properties. */
747
- var hasOwnProperty$5 = Object.prototype.hasOwnProperty;
600
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isKeyable.js
748
601
  /**
749
- * Creates an array of the enumerable property names of the array-like `value`.
602
+ * Checks if `value` is suitable for use as unique object key.
750
603
  *
751
604
  * @private
752
- * @param {*} value The value to query.
753
- * @param {boolean} inherited Specify returning inherited property names.
754
- * @returns {Array} Returns the array of property names.
605
+ * @param {*} value The value to check.
606
+ * @returns {boolean} Returns `true` if `value` is suitable, else `false`.
755
607
  */
756
- function arrayLikeKeys(value, inherited) {
757
- var isArr = isArray(value), isArg = !isArr && isArguments(value), isBuff = !isArr && !isArg && isBuffer(value), isType = !isArr && !isArg && !isBuff && isTypedArray(value), skipIndexes = isArr || isArg || isBuff || isType, result = skipIndexes ? baseTimes(value.length, String) : [], length = result.length;
758
- for (var key in value) if ((inherited || hasOwnProperty$5.call(value, key)) && !(skipIndexes && (key == "length" || isBuff && (key == "offset" || key == "parent") || isType && (key == "buffer" || key == "byteLength" || key == "byteOffset") || isIndex(key, length)))) result.push(key);
759
- return result;
608
+ function isKeyable(value) {
609
+ var type = typeof value;
610
+ return type == "string" || type == "number" || type == "symbol" || type == "boolean" ? value !== "__proto__" : value === null;
760
611
  }
761
612
  //#endregion
762
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_overArg.js
613
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getMapData.js
763
614
  /**
764
- * Creates a unary function that invokes `func` with its argument transformed.
615
+ * Gets the data for `map`.
765
616
  *
766
617
  * @private
767
- * @param {Function} func The function to wrap.
768
- * @param {Function} transform The argument transform.
769
- * @returns {Function} Returns the new function.
618
+ * @param {Object} map The map to query.
619
+ * @param {string} key The reference key.
620
+ * @returns {*} Returns the map data.
770
621
  */
771
- function overArg(func, transform) {
772
- return function(arg) {
773
- return func(transform(arg));
774
- };
622
+ function getMapData(map, key) {
623
+ var data = map.__data__;
624
+ return isKeyable(key) ? data[typeof key == "string" ? "string" : "hash"] : data.map;
775
625
  }
776
626
  //#endregion
777
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nativeKeys.js
778
- var nativeKeys = overArg(Object.keys, Object);
779
- //#endregion
780
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseKeys.js
781
- /** Used to check objects for own properties. */
782
- var hasOwnProperty$4 = Object.prototype.hasOwnProperty;
627
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheDelete.js
783
628
  /**
784
- * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.
629
+ * Removes `key` and its value from the map.
785
630
  *
786
631
  * @private
787
- * @param {Object} object The object to query.
788
- * @returns {Array} Returns the array of property names.
632
+ * @name delete
633
+ * @memberOf MapCache
634
+ * @param {string} key The key of the value to remove.
635
+ * @returns {boolean} Returns `true` if the entry was removed, else `false`.
789
636
  */
790
- function baseKeys(object) {
791
- if (!isPrototype(object)) return nativeKeys(object);
792
- var result = [];
793
- for (var key in Object(object)) if (hasOwnProperty$4.call(object, key) && key != "constructor") result.push(key);
637
+ function mapCacheDelete(key) {
638
+ var result = getMapData(this, key)["delete"](key);
639
+ this.size -= result ? 1 : 0;
794
640
  return result;
795
641
  }
796
642
  //#endregion
797
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/keys.js
643
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheGet.js
798
644
  /**
799
- * Creates an array of the own enumerable property names of `object`.
800
- *
801
- * **Note:** Non-object values are coerced to objects. See the
802
- * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)
803
- * for more details.
804
- *
805
- * @static
806
- * @since 0.1.0
807
- * @memberOf _
808
- * @category Object
809
- * @param {Object} object The object to query.
810
- * @returns {Array} Returns the array of property names.
811
- * @example
812
- *
813
- * function Foo() {
814
- * this.a = 1;
815
- * this.b = 2;
816
- * }
817
- *
818
- * Foo.prototype.c = 3;
819
- *
820
- * _.keys(new Foo);
821
- * // => ['a', 'b'] (iteration order is not guaranteed)
645
+ * Gets the map value for `key`.
822
646
  *
823
- * _.keys('hi');
824
- * // => ['0', '1']
647
+ * @private
648
+ * @name get
649
+ * @memberOf MapCache
650
+ * @param {string} key The key of the value to get.
651
+ * @returns {*} Returns the entry value.
825
652
  */
826
- function keys(object) {
827
- return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);
653
+ function mapCacheGet(key) {
654
+ return getMapData(this, key).get(key);
828
655
  }
829
656
  //#endregion
830
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nativeKeysIn.js
657
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheHas.js
831
658
  /**
832
- * This function is like
833
- * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)
834
- * except that it includes inherited enumerable properties.
659
+ * Checks if a map value for `key` exists.
835
660
  *
836
661
  * @private
837
- * @param {Object} object The object to query.
838
- * @returns {Array} Returns the array of property names.
662
+ * @name has
663
+ * @memberOf MapCache
664
+ * @param {string} key The key of the entry to check.
665
+ * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
839
666
  */
840
- function nativeKeysIn(object) {
841
- var result = [];
842
- if (object != null) for (var key in Object(object)) result.push(key);
843
- return result;
667
+ function mapCacheHas(key) {
668
+ return getMapData(this, key).has(key);
844
669
  }
845
670
  //#endregion
846
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseKeysIn.js
847
- /** Used to check objects for own properties. */
848
- var hasOwnProperty$3 = Object.prototype.hasOwnProperty;
671
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheSet.js
849
672
  /**
850
- * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.
673
+ * Sets the map `key` to `value`.
851
674
  *
852
675
  * @private
853
- * @param {Object} object The object to query.
854
- * @returns {Array} Returns the array of property names.
676
+ * @name set
677
+ * @memberOf MapCache
678
+ * @param {string} key The key of the value to set.
679
+ * @param {*} value The value to set.
680
+ * @returns {Object} Returns the map cache instance.
855
681
  */
856
- function baseKeysIn(object) {
857
- if (!isObject(object)) return nativeKeysIn(object);
858
- var isProto = isPrototype(object), result = [];
859
- for (var key in object) if (!(key == "constructor" && (isProto || !hasOwnProperty$3.call(object, key)))) result.push(key);
860
- return result;
682
+ function mapCacheSet(key, value) {
683
+ var data = getMapData(this, key), size = data.size;
684
+ data.set(key, value);
685
+ this.size += data.size == size ? 0 : 1;
686
+ return this;
861
687
  }
862
688
  //#endregion
863
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/keysIn.js
689
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_MapCache.js
864
690
  /**
865
- * Creates an array of the own and inherited enumerable property names of `object`.
866
- *
867
- * **Note:** Non-object values are coerced to objects.
868
- *
869
- * @static
870
- * @memberOf _
871
- * @since 3.0.0
872
- * @category Object
873
- * @param {Object} object The object to query.
874
- * @returns {Array} Returns the array of property names.
875
- * @example
876
- *
877
- * function Foo() {
878
- * this.a = 1;
879
- * this.b = 2;
880
- * }
881
- *
882
- * Foo.prototype.c = 3;
691
+ * Creates a map cache object to store key-value pairs.
883
692
  *
884
- * _.keysIn(new Foo);
885
- * // => ['a', 'b', 'c'] (iteration order is not guaranteed)
693
+ * @private
694
+ * @constructor
695
+ * @param {Array} [entries] The key-value pairs to cache.
886
696
  */
887
- function keysIn(object) {
888
- return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);
697
+ function MapCache(entries) {
698
+ var index = -1, length = entries == null ? 0 : entries.length;
699
+ this.clear();
700
+ while (++index < length) {
701
+ var entry = entries[index];
702
+ this.set(entry[0], entry[1]);
703
+ }
889
704
  }
705
+ MapCache.prototype.clear = mapCacheClear;
706
+ MapCache.prototype["delete"] = mapCacheDelete;
707
+ MapCache.prototype.get = mapCacheGet;
708
+ MapCache.prototype.has = mapCacheHas;
709
+ MapCache.prototype.set = mapCacheSet;
890
710
  //#endregion
891
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nativeCreate.js
892
- var nativeCreate = getNative(Object, "create");
893
- //#endregion
894
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashClear.js
711
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackSet.js
712
+ /** Used as the size to enable large array optimizations. */
713
+ var LARGE_ARRAY_SIZE = 200;
895
714
  /**
896
- * Removes all key-value entries from the hash.
715
+ * Sets the stack `key` to `value`.
897
716
  *
898
717
  * @private
899
- * @name clear
900
- * @memberOf Hash
718
+ * @name set
719
+ * @memberOf Stack
720
+ * @param {string} key The key of the value to set.
721
+ * @param {*} value The value to set.
722
+ * @returns {Object} Returns the stack cache instance.
901
723
  */
902
- function hashClear() {
903
- this.__data__ = nativeCreate ? nativeCreate(null) : {};
904
- this.size = 0;
724
+ function stackSet(key, value) {
725
+ var data = this.__data__;
726
+ if (data instanceof ListCache) {
727
+ var pairs = data.__data__;
728
+ if (!Map || pairs.length < LARGE_ARRAY_SIZE - 1) {
729
+ pairs.push([key, value]);
730
+ this.size = ++data.size;
731
+ return this;
732
+ }
733
+ data = this.__data__ = new MapCache(pairs);
734
+ }
735
+ data.set(key, value);
736
+ this.size = data.size;
737
+ return this;
905
738
  }
906
739
  //#endregion
907
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashDelete.js
740
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Stack.js
908
741
  /**
909
- * Removes `key` and its value from the hash.
742
+ * Creates a stack cache object to store key-value pairs.
910
743
  *
911
744
  * @private
912
- * @name delete
913
- * @memberOf Hash
914
- * @param {Object} hash The hash to modify.
915
- * @param {string} key The key of the value to remove.
916
- * @returns {boolean} Returns `true` if the entry was removed, else `false`.
745
+ * @constructor
746
+ * @param {Array} [entries] The key-value pairs to cache.
917
747
  */
918
- function hashDelete(key) {
919
- var result = this.has(key) && delete this.__data__[key];
920
- this.size -= result ? 1 : 0;
921
- return result;
748
+ function Stack(entries) {
749
+ var data = this.__data__ = new ListCache(entries);
750
+ this.size = data.size;
922
751
  }
752
+ Stack.prototype.clear = stackClear;
753
+ Stack.prototype["delete"] = stackDelete;
754
+ Stack.prototype.get = stackGet;
755
+ Stack.prototype.has = stackHas;
756
+ Stack.prototype.set = stackSet;
923
757
  //#endregion
924
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashGet.js
925
- /** Used to stand-in for `undefined` hash values. */
926
- var HASH_UNDEFINED$1 = "__lodash_hash_undefined__";
927
- /** Used to check objects for own properties. */
928
- var hasOwnProperty$2 = Object.prototype.hasOwnProperty;
758
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayEach.js
929
759
  /**
930
- * Gets the hash value for `key`.
760
+ * A specialized version of `_.forEach` for arrays without support for
761
+ * iteratee shorthands.
931
762
  *
932
763
  * @private
933
- * @name get
934
- * @memberOf Hash
935
- * @param {string} key The key of the value to get.
936
- * @returns {*} Returns the entry value.
764
+ * @param {Array} [array] The array to iterate over.
765
+ * @param {Function} iteratee The function invoked per iteration.
766
+ * @returns {Array} Returns `array`.
937
767
  */
938
- function hashGet(key) {
939
- var data = this.__data__;
940
- if (nativeCreate) {
941
- var result = data[key];
942
- return result === HASH_UNDEFINED$1 ? void 0 : result;
943
- }
944
- return hasOwnProperty$2.call(data, key) ? data[key] : void 0;
768
+ function arrayEach(array, iteratee) {
769
+ var index = -1, length = array == null ? 0 : array.length;
770
+ while (++index < length) if (iteratee(array[index], index, array) === false) break;
771
+ return array;
945
772
  }
946
773
  //#endregion
947
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashHas.js
948
- /** Used to check objects for own properties. */
949
- var hasOwnProperty$1 = Object.prototype.hasOwnProperty;
774
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_defineProperty.js
775
+ var defineProperty = function() {
776
+ try {
777
+ var func = getNative(Object, "defineProperty");
778
+ func({}, "", {});
779
+ return func;
780
+ } catch (e) {}
781
+ }();
782
+ //#endregion
783
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseAssignValue.js
950
784
  /**
951
- * Checks if a hash value for `key` exists.
785
+ * The base implementation of `assignValue` and `assignMergeValue` without
786
+ * value checks.
952
787
  *
953
788
  * @private
954
- * @name has
955
- * @memberOf Hash
956
- * @param {string} key The key of the entry to check.
957
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
789
+ * @param {Object} object The object to modify.
790
+ * @param {string} key The key of the property to assign.
791
+ * @param {*} value The value to assign.
958
792
  */
959
- function hashHas(key) {
960
- var data = this.__data__;
961
- return nativeCreate ? data[key] !== void 0 : hasOwnProperty$1.call(data, key);
793
+ function baseAssignValue(object, key, value) {
794
+ if (key == "__proto__" && defineProperty) defineProperty(object, key, {
795
+ "configurable": true,
796
+ "enumerable": true,
797
+ "value": value,
798
+ "writable": true
799
+ });
800
+ else object[key] = value;
962
801
  }
963
802
  //#endregion
964
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashSet.js
965
- /** Used to stand-in for `undefined` hash values. */
966
- var HASH_UNDEFINED = "__lodash_hash_undefined__";
803
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_assignValue.js
804
+ /** Used to check objects for own properties. */
805
+ var hasOwnProperty$5 = Object.prototype.hasOwnProperty;
967
806
  /**
968
- * Sets the hash `key` to `value`.
807
+ * Assigns `value` to `key` of `object` if the existing value is not equivalent
808
+ * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
809
+ * for equality comparisons.
969
810
  *
970
811
  * @private
971
- * @name set
972
- * @memberOf Hash
973
- * @param {string} key The key of the value to set.
974
- * @param {*} value The value to set.
975
- * @returns {Object} Returns the hash instance.
812
+ * @param {Object} object The object to modify.
813
+ * @param {string} key The key of the property to assign.
814
+ * @param {*} value The value to assign.
976
815
  */
977
- function hashSet(key, value) {
978
- var data = this.__data__;
979
- this.size += this.has(key) ? 0 : 1;
980
- data[key] = nativeCreate && value === void 0 ? HASH_UNDEFINED : value;
981
- return this;
816
+ function assignValue(object, key, value) {
817
+ var objValue = object[key];
818
+ if (!(hasOwnProperty$5.call(object, key) && eq(objValue, value)) || value === void 0 && !(key in object)) baseAssignValue(object, key, value);
982
819
  }
983
820
  //#endregion
984
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Hash.js
821
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyObject.js
985
822
  /**
986
- * Creates a hash object.
823
+ * Copies properties of `source` to `object`.
987
824
  *
988
825
  * @private
989
- * @constructor
990
- * @param {Array} [entries] The key-value pairs to cache.
826
+ * @param {Object} source The object to copy properties from.
827
+ * @param {Array} props The property identifiers to copy.
828
+ * @param {Object} [object={}] The object to copy properties to.
829
+ * @param {Function} [customizer] The function to customize copied values.
830
+ * @returns {Object} Returns `object`.
991
831
  */
992
- function Hash(entries) {
993
- var index = -1, length = entries == null ? 0 : entries.length;
994
- this.clear();
832
+ function copyObject(source, props, object, customizer) {
833
+ var isNew = !object;
834
+ object || (object = {});
835
+ var index = -1, length = props.length;
995
836
  while (++index < length) {
996
- var entry = entries[index];
997
- this.set(entry[0], entry[1]);
837
+ var key = props[index];
838
+ var newValue = customizer ? customizer(object[key], source[key], key, object, source) : void 0;
839
+ if (newValue === void 0) newValue = source[key];
840
+ if (isNew) baseAssignValue(object, key, newValue);
841
+ else assignValue(object, key, newValue);
998
842
  }
843
+ return object;
999
844
  }
1000
- Hash.prototype.clear = hashClear;
1001
- Hash.prototype["delete"] = hashDelete;
1002
- Hash.prototype.get = hashGet;
1003
- Hash.prototype.has = hashHas;
1004
- Hash.prototype.set = hashSet;
1005
845
  //#endregion
1006
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheClear.js
846
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseTimes.js
1007
847
  /**
1008
- * Removes all key-value entries from the list cache.
848
+ * The base implementation of `_.times` without support for iteratee shorthands
849
+ * or max array length checks.
1009
850
  *
1010
851
  * @private
1011
- * @name clear
1012
- * @memberOf ListCache
852
+ * @param {number} n The number of times to invoke `iteratee`.
853
+ * @param {Function} iteratee The function invoked per iteration.
854
+ * @returns {Array} Returns the array of results.
1013
855
  */
1014
- function listCacheClear() {
1015
- this.__data__ = [];
1016
- this.size = 0;
856
+ function baseTimes(n, iteratee) {
857
+ var index = -1, result = Array(n);
858
+ while (++index < n) result[index] = iteratee(index);
859
+ return result;
1017
860
  }
1018
861
  //#endregion
1019
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_assocIndexOf.js
862
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObjectLike.js
1020
863
  /**
1021
- * Gets the index at which the `key` is found in `array` of key-value pairs.
864
+ * Checks if `value` is object-like. A value is object-like if it's not `null`
865
+ * and has a `typeof` result of "object".
1022
866
  *
1023
- * @private
1024
- * @param {Array} array The array to inspect.
1025
- * @param {*} key The key to search for.
1026
- * @returns {number} Returns the index of the matched value, else `-1`.
1027
- */
1028
- function assocIndexOf(array, key) {
1029
- var length = array.length;
1030
- while (length--) if (eq(array[length][0], key)) return length;
1031
- return -1;
1032
- }
1033
- //#endregion
1034
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheDelete.js
1035
- /** Built-in value references. */
1036
- var splice = Array.prototype.splice;
1037
- /**
1038
- * Removes `key` and its value from the list cache.
867
+ * @static
868
+ * @memberOf _
869
+ * @since 4.0.0
870
+ * @category Lang
871
+ * @param {*} value The value to check.
872
+ * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
873
+ * @example
1039
874
  *
1040
- * @private
1041
- * @name delete
1042
- * @memberOf ListCache
1043
- * @param {string} key The key of the value to remove.
1044
- * @returns {boolean} Returns `true` if the entry was removed, else `false`.
875
+ * _.isObjectLike({});
876
+ * // => true
877
+ *
878
+ * _.isObjectLike([1, 2, 3]);
879
+ * // => true
880
+ *
881
+ * _.isObjectLike(_.noop);
882
+ * // => false
883
+ *
884
+ * _.isObjectLike(null);
885
+ * // => false
1045
886
  */
1046
- function listCacheDelete(key) {
1047
- var data = this.__data__, index = assocIndexOf(data, key);
1048
- if (index < 0) return false;
1049
- if (index == data.length - 1) data.pop();
1050
- else splice.call(data, index, 1);
1051
- --this.size;
1052
- return true;
887
+ function isObjectLike(value) {
888
+ return value != null && typeof value == "object";
1053
889
  }
1054
890
  //#endregion
1055
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheGet.js
891
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseIsArguments.js
892
+ /** `Object#toString` result references. */
893
+ var argsTag$2 = "[object Arguments]";
1056
894
  /**
1057
- * Gets the list cache value for `key`.
895
+ * The base implementation of `_.isArguments`.
1058
896
  *
1059
897
  * @private
1060
- * @name get
1061
- * @memberOf ListCache
1062
- * @param {string} key The key of the value to get.
1063
- * @returns {*} Returns the entry value.
898
+ * @param {*} value The value to check.
899
+ * @returns {boolean} Returns `true` if `value` is an `arguments` object,
1064
900
  */
1065
- function listCacheGet(key) {
1066
- var data = this.__data__, index = assocIndexOf(data, key);
1067
- return index < 0 ? void 0 : data[index][1];
901
+ function baseIsArguments(value) {
902
+ return isObjectLike(value) && baseGetTag(value) == argsTag$2;
1068
903
  }
1069
904
  //#endregion
1070
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheHas.js
905
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArguments.js
906
+ /** Used for built-in method references. */
907
+ var objectProto$1 = Object.prototype;
908
+ /** Used to check objects for own properties. */
909
+ var hasOwnProperty$4 = objectProto$1.hasOwnProperty;
910
+ /** Built-in value references. */
911
+ var propertyIsEnumerable$1 = objectProto$1.propertyIsEnumerable;
1071
912
  /**
1072
- * Checks if a list cache value for `key` exists.
913
+ * Checks if `value` is likely an `arguments` object.
1073
914
  *
1074
- * @private
1075
- * @name has
1076
- * @memberOf ListCache
1077
- * @param {string} key The key of the entry to check.
1078
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
915
+ * @static
916
+ * @memberOf _
917
+ * @since 0.1.0
918
+ * @category Lang
919
+ * @param {*} value The value to check.
920
+ * @returns {boolean} Returns `true` if `value` is an `arguments` object,
921
+ * else `false`.
922
+ * @example
923
+ *
924
+ * _.isArguments(function() { return arguments; }());
925
+ * // => true
926
+ *
927
+ * _.isArguments([1, 2, 3]);
928
+ * // => false
1079
929
  */
1080
- function listCacheHas(key) {
1081
- return assocIndexOf(this.__data__, key) > -1;
1082
- }
930
+ var isArguments = baseIsArguments(function() {
931
+ return arguments;
932
+ }()) ? baseIsArguments : function(value) {
933
+ return isObjectLike(value) && hasOwnProperty$4.call(value, "callee") && !propertyIsEnumerable$1.call(value, "callee");
934
+ };
1083
935
  //#endregion
1084
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheSet.js
936
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArray.js
1085
937
  /**
1086
- * Sets the list cache `key` to `value`.
938
+ * Checks if `value` is classified as an `Array` object.
1087
939
  *
1088
- * @private
1089
- * @name set
1090
- * @memberOf ListCache
1091
- * @param {string} key The key of the value to set.
1092
- * @param {*} value The value to set.
1093
- * @returns {Object} Returns the list cache instance.
940
+ * @static
941
+ * @memberOf _
942
+ * @since 0.1.0
943
+ * @category Lang
944
+ * @param {*} value The value to check.
945
+ * @returns {boolean} Returns `true` if `value` is an array, else `false`.
946
+ * @example
947
+ *
948
+ * _.isArray([1, 2, 3]);
949
+ * // => true
950
+ *
951
+ * _.isArray(document.body.children);
952
+ * // => false
953
+ *
954
+ * _.isArray('abc');
955
+ * // => false
956
+ *
957
+ * _.isArray(_.noop);
958
+ * // => false
1094
959
  */
1095
- function listCacheSet(key, value) {
1096
- var data = this.__data__, index = assocIndexOf(data, key);
1097
- if (index < 0) {
1098
- ++this.size;
1099
- data.push([key, value]);
1100
- } else data[index][1] = value;
1101
- return this;
1102
- }
960
+ var isArray = Array.isArray;
1103
961
  //#endregion
1104
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_ListCache.js
962
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/stubFalse.js
1105
963
  /**
1106
- * Creates an list cache object.
964
+ * This method returns `false`.
1107
965
  *
1108
- * @private
1109
- * @constructor
1110
- * @param {Array} [entries] The key-value pairs to cache.
966
+ * @static
967
+ * @memberOf _
968
+ * @since 4.13.0
969
+ * @category Util
970
+ * @returns {boolean} Returns `false`.
971
+ * @example
972
+ *
973
+ * _.times(2, _.stubFalse);
974
+ * // => [false, false]
1111
975
  */
1112
- function ListCache(entries) {
1113
- var index = -1, length = entries == null ? 0 : entries.length;
1114
- this.clear();
1115
- while (++index < length) {
1116
- var entry = entries[index];
1117
- this.set(entry[0], entry[1]);
1118
- }
976
+ function stubFalse() {
977
+ return false;
1119
978
  }
1120
- ListCache.prototype.clear = listCacheClear;
1121
- ListCache.prototype["delete"] = listCacheDelete;
1122
- ListCache.prototype.get = listCacheGet;
1123
- ListCache.prototype.has = listCacheHas;
1124
- ListCache.prototype.set = listCacheSet;
1125
979
  //#endregion
1126
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Map.js
1127
- var Map = getNative(root, "Map");
1128
- //#endregion
1129
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheClear.js
980
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isBuffer.js
981
+ /** Detect free variable `exports`. */
982
+ var freeExports$2 = typeof exports == "object" && exports && !exports.nodeType && exports;
983
+ /** Detect free variable `module`. */
984
+ var freeModule$2 = freeExports$2 && typeof module == "object" && module && !module.nodeType && module;
985
+ /** Built-in value references. */
986
+ var Buffer$1 = freeModule$2 && freeModule$2.exports === freeExports$2 ? root.Buffer : void 0;
1130
987
  /**
1131
- * Removes all key-value entries from the map.
988
+ * Checks if `value` is a buffer.
1132
989
  *
1133
- * @private
1134
- * @name clear
1135
- * @memberOf MapCache
990
+ * @static
991
+ * @memberOf _
992
+ * @since 4.3.0
993
+ * @category Lang
994
+ * @param {*} value The value to check.
995
+ * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
996
+ * @example
997
+ *
998
+ * _.isBuffer(new Buffer(2));
999
+ * // => true
1000
+ *
1001
+ * _.isBuffer(new Uint8Array(2));
1002
+ * // => false
1136
1003
  */
1137
- function mapCacheClear() {
1138
- this.size = 0;
1139
- this.__data__ = {
1140
- "hash": new Hash(),
1141
- "map": new (Map || ListCache)(),
1142
- "string": new Hash()
1143
- };
1144
- }
1004
+ var isBuffer = (Buffer$1 ? Buffer$1.isBuffer : void 0) || stubFalse;
1145
1005
  //#endregion
1146
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isKeyable.js
1006
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isIndex.js
1007
+ /** Used as references for various `Number` constants. */
1008
+ var MAX_SAFE_INTEGER$1 = 9007199254740991;
1009
+ /** Used to detect unsigned integer values. */
1010
+ var reIsUint = /^(?:0|[1-9]\d*)$/;
1147
1011
  /**
1148
- * Checks if `value` is suitable for use as unique object key.
1012
+ * Checks if `value` is a valid array-like index.
1149
1013
  *
1150
1014
  * @private
1151
1015
  * @param {*} value The value to check.
1152
- * @returns {boolean} Returns `true` if `value` is suitable, else `false`.
1016
+ * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
1017
+ * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
1153
1018
  */
1154
- function isKeyable(value) {
1019
+ function isIndex(value, length) {
1155
1020
  var type = typeof value;
1156
- return type == "string" || type == "number" || type == "symbol" || type == "boolean" ? value !== "__proto__" : value === null;
1021
+ length = length == null ? MAX_SAFE_INTEGER$1 : length;
1022
+ return !!length && (type == "number" || type != "symbol" && reIsUint.test(value)) && value > -1 && value % 1 == 0 && value < length;
1157
1023
  }
1158
1024
  //#endregion
1159
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getMapData.js
1025
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isLength.js
1026
+ /** Used as references for various `Number` constants. */
1027
+ var MAX_SAFE_INTEGER = 9007199254740991;
1160
1028
  /**
1161
- * Gets the data for `map`.
1029
+ * Checks if `value` is a valid array-like length.
1162
1030
  *
1163
- * @private
1164
- * @param {Object} map The map to query.
1165
- * @param {string} key The reference key.
1166
- * @returns {*} Returns the map data.
1031
+ * **Note:** This method is loosely based on
1032
+ * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
1033
+ *
1034
+ * @static
1035
+ * @memberOf _
1036
+ * @since 4.0.0
1037
+ * @category Lang
1038
+ * @param {*} value The value to check.
1039
+ * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
1040
+ * @example
1041
+ *
1042
+ * _.isLength(3);
1043
+ * // => true
1044
+ *
1045
+ * _.isLength(Number.MIN_VALUE);
1046
+ * // => false
1047
+ *
1048
+ * _.isLength(Infinity);
1049
+ * // => false
1050
+ *
1051
+ * _.isLength('3');
1052
+ * // => false
1167
1053
  */
1168
- function getMapData(map, key) {
1169
- var data = map.__data__;
1170
- return isKeyable(key) ? data[typeof key == "string" ? "string" : "hash"] : data.map;
1054
+ function isLength(value) {
1055
+ return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
1171
1056
  }
1172
1057
  //#endregion
1173
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheDelete.js
1058
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseIsTypedArray.js
1059
+ /** `Object#toString` result references. */
1060
+ var argsTag$1 = "[object Arguments]", arrayTag$1 = "[object Array]", boolTag$2 = "[object Boolean]", dateTag$2 = "[object Date]", errorTag$1 = "[object Error]", funcTag$1 = "[object Function]", mapTag$4 = "[object Map]", numberTag$2 = "[object Number]", objectTag$2 = "[object Object]", regexpTag$2 = "[object RegExp]", setTag$4 = "[object Set]", stringTag$2 = "[object String]", weakMapTag$2 = "[object WeakMap]";
1061
+ var arrayBufferTag$2 = "[object ArrayBuffer]", dataViewTag$3 = "[object DataView]", float32Tag$2 = "[object Float32Array]", float64Tag$2 = "[object Float64Array]", int8Tag$2 = "[object Int8Array]", int16Tag$2 = "[object Int16Array]", int32Tag$2 = "[object Int32Array]", uint8Tag$2 = "[object Uint8Array]", uint8ClampedTag$2 = "[object Uint8ClampedArray]", uint16Tag$2 = "[object Uint16Array]", uint32Tag$2 = "[object Uint32Array]";
1062
+ /** Used to identify `toStringTag` values of typed arrays. */
1063
+ var typedArrayTags = {};
1064
+ typedArrayTags[float32Tag$2] = typedArrayTags[float64Tag$2] = typedArrayTags[int8Tag$2] = typedArrayTags[int16Tag$2] = typedArrayTags[int32Tag$2] = typedArrayTags[uint8Tag$2] = typedArrayTags[uint8ClampedTag$2] = typedArrayTags[uint16Tag$2] = typedArrayTags[uint32Tag$2] = true;
1065
+ typedArrayTags[argsTag$1] = typedArrayTags[arrayTag$1] = typedArrayTags[arrayBufferTag$2] = typedArrayTags[boolTag$2] = typedArrayTags[dataViewTag$3] = typedArrayTags[dateTag$2] = typedArrayTags[errorTag$1] = typedArrayTags[funcTag$1] = typedArrayTags[mapTag$4] = typedArrayTags[numberTag$2] = typedArrayTags[objectTag$2] = typedArrayTags[regexpTag$2] = typedArrayTags[setTag$4] = typedArrayTags[stringTag$2] = typedArrayTags[weakMapTag$2] = false;
1174
1066
  /**
1175
- * Removes `key` and its value from the map.
1067
+ * The base implementation of `_.isTypedArray` without Node.js optimizations.
1176
1068
  *
1177
1069
  * @private
1178
- * @name delete
1179
- * @memberOf MapCache
1180
- * @param {string} key The key of the value to remove.
1181
- * @returns {boolean} Returns `true` if the entry was removed, else `false`.
1070
+ * @param {*} value The value to check.
1071
+ * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
1182
1072
  */
1183
- function mapCacheDelete(key) {
1184
- var result = getMapData(this, key)["delete"](key);
1185
- this.size -= result ? 1 : 0;
1186
- return result;
1073
+ function baseIsTypedArray(value) {
1074
+ return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[baseGetTag(value)];
1187
1075
  }
1188
1076
  //#endregion
1189
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheGet.js
1077
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseUnary.js
1190
1078
  /**
1191
- * Gets the map value for `key`.
1079
+ * The base implementation of `_.unary` without support for storing metadata.
1192
1080
  *
1193
1081
  * @private
1194
- * @name get
1195
- * @memberOf MapCache
1196
- * @param {string} key The key of the value to get.
1197
- * @returns {*} Returns the entry value.
1082
+ * @param {Function} func The function to cap arguments for.
1083
+ * @returns {Function} Returns the new capped function.
1198
1084
  */
1199
- function mapCacheGet(key) {
1200
- return getMapData(this, key).get(key);
1085
+ function baseUnary(func) {
1086
+ return function(value) {
1087
+ return func(value);
1088
+ };
1201
1089
  }
1202
1090
  //#endregion
1203
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheHas.js
1091
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nodeUtil.js
1092
+ /** Detect free variable `exports`. */
1093
+ var freeExports$1 = typeof exports == "object" && exports && !exports.nodeType && exports;
1094
+ /** Detect free variable `module`. */
1095
+ var freeModule$1 = freeExports$1 && typeof module == "object" && module && !module.nodeType && module;
1096
+ /** Detect free variable `process` from Node.js. */
1097
+ var freeProcess = freeModule$1 && freeModule$1.exports === freeExports$1 && freeGlobal.process;
1098
+ /** Used to access faster Node.js helpers. */
1099
+ var nodeUtil = function() {
1100
+ try {
1101
+ var types = freeModule$1 && freeModule$1.require && freeModule$1.require("util").types;
1102
+ if (types) return types;
1103
+ return freeProcess && freeProcess.binding && freeProcess.binding("util");
1104
+ } catch (e) {}
1105
+ }();
1106
+ //#endregion
1107
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isTypedArray.js
1108
+ var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
1204
1109
  /**
1205
- * Checks if a map value for `key` exists.
1110
+ * Checks if `value` is classified as a typed array.
1206
1111
  *
1207
- * @private
1208
- * @name has
1209
- * @memberOf MapCache
1210
- * @param {string} key The key of the entry to check.
1211
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
1112
+ * @static
1113
+ * @memberOf _
1114
+ * @since 3.0.0
1115
+ * @category Lang
1116
+ * @param {*} value The value to check.
1117
+ * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
1118
+ * @example
1119
+ *
1120
+ * _.isTypedArray(new Uint8Array);
1121
+ * // => true
1122
+ *
1123
+ * _.isTypedArray([]);
1124
+ * // => false
1212
1125
  */
1213
- function mapCacheHas(key) {
1214
- return getMapData(this, key).has(key);
1215
- }
1126
+ var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;
1216
1127
  //#endregion
1217
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheSet.js
1128
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayLikeKeys.js
1129
+ /** Used to check objects for own properties. */
1130
+ var hasOwnProperty$3 = Object.prototype.hasOwnProperty;
1218
1131
  /**
1219
- * Sets the map `key` to `value`.
1132
+ * Creates an array of the enumerable property names of the array-like `value`.
1220
1133
  *
1221
1134
  * @private
1222
- * @name set
1223
- * @memberOf MapCache
1224
- * @param {string} key The key of the value to set.
1225
- * @param {*} value The value to set.
1226
- * @returns {Object} Returns the map cache instance.
1135
+ * @param {*} value The value to query.
1136
+ * @param {boolean} inherited Specify returning inherited property names.
1137
+ * @returns {Array} Returns the array of property names.
1227
1138
  */
1228
- function mapCacheSet(key, value) {
1229
- var data = getMapData(this, key), size = data.size;
1230
- data.set(key, value);
1231
- this.size += data.size == size ? 0 : 1;
1232
- return this;
1139
+ function arrayLikeKeys(value, inherited) {
1140
+ var isArr = isArray(value), isArg = !isArr && isArguments(value), isBuff = !isArr && !isArg && isBuffer(value), isType = !isArr && !isArg && !isBuff && isTypedArray(value), skipIndexes = isArr || isArg || isBuff || isType, result = skipIndexes ? baseTimes(value.length, String) : [], length = result.length;
1141
+ for (var key in value) if ((inherited || hasOwnProperty$3.call(value, key)) && !(skipIndexes && (key == "length" || isBuff && (key == "offset" || key == "parent") || isType && (key == "buffer" || key == "byteLength" || key == "byteOffset") || isIndex(key, length)))) result.push(key);
1142
+ return result;
1233
1143
  }
1234
1144
  //#endregion
1235
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_MapCache.js
1145
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isPrototype.js
1146
+ /** Used for built-in method references. */
1147
+ var objectProto = Object.prototype;
1236
1148
  /**
1237
- * Creates a map cache object to store key-value pairs.
1149
+ * Checks if `value` is likely a prototype object.
1238
1150
  *
1239
1151
  * @private
1240
- * @constructor
1241
- * @param {Array} [entries] The key-value pairs to cache.
1152
+ * @param {*} value The value to check.
1153
+ * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.
1242
1154
  */
1243
- function MapCache(entries) {
1244
- var index = -1, length = entries == null ? 0 : entries.length;
1245
- this.clear();
1246
- while (++index < length) {
1247
- var entry = entries[index];
1248
- this.set(entry[0], entry[1]);
1249
- }
1155
+ function isPrototype(value) {
1156
+ var Ctor = value && value.constructor;
1157
+ return value === (typeof Ctor == "function" && Ctor.prototype || objectProto);
1250
1158
  }
1251
- MapCache.prototype.clear = mapCacheClear;
1252
- MapCache.prototype["delete"] = mapCacheDelete;
1253
- MapCache.prototype.get = mapCacheGet;
1254
- MapCache.prototype.has = mapCacheHas;
1255
- MapCache.prototype.set = mapCacheSet;
1256
1159
  //#endregion
1257
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayPush.js
1160
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_overArg.js
1258
1161
  /**
1259
- * Appends the elements of `values` to `array`.
1162
+ * Creates a unary function that invokes `func` with its argument transformed.
1260
1163
  *
1261
1164
  * @private
1262
- * @param {Array} array The array to modify.
1263
- * @param {Array} values The values to append.
1264
- * @returns {Array} Returns `array`.
1165
+ * @param {Function} func The function to wrap.
1166
+ * @param {Function} transform The argument transform.
1167
+ * @returns {Function} Returns the new function.
1265
1168
  */
1266
- function arrayPush(array, values) {
1267
- var index = -1, length = values.length, offset = array.length;
1268
- while (++index < length) array[offset + index] = values[index];
1269
- return array;
1169
+ function overArg(func, transform) {
1170
+ return function(arg) {
1171
+ return func(transform(arg));
1172
+ };
1270
1173
  }
1271
1174
  //#endregion
1272
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getPrototype.js
1273
- /** Built-in value references. */
1274
- var getPrototype = overArg(Object.getPrototypeOf, Object);
1175
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nativeKeys.js
1176
+ var nativeKeys = overArg(Object.keys, Object);
1275
1177
  //#endregion
1276
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackClear.js
1178
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseKeys.js
1179
+ /** Used to check objects for own properties. */
1180
+ var hasOwnProperty$2 = Object.prototype.hasOwnProperty;
1277
1181
  /**
1278
- * Removes all key-value entries from the stack.
1182
+ * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.
1279
1183
  *
1280
1184
  * @private
1281
- * @name clear
1282
- * @memberOf Stack
1185
+ * @param {Object} object The object to query.
1186
+ * @returns {Array} Returns the array of property names.
1283
1187
  */
1284
- function stackClear() {
1285
- this.__data__ = new ListCache();
1286
- this.size = 0;
1188
+ function baseKeys(object) {
1189
+ if (!isPrototype(object)) return nativeKeys(object);
1190
+ var result = [];
1191
+ for (var key in Object(object)) if (hasOwnProperty$2.call(object, key) && key != "constructor") result.push(key);
1192
+ return result;
1287
1193
  }
1288
1194
  //#endregion
1289
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackDelete.js
1195
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArrayLike.js
1290
1196
  /**
1291
- * Removes `key` and its value from the stack.
1197
+ * Checks if `value` is array-like. A value is considered array-like if it's
1198
+ * not a function and has a `value.length` that's an integer greater than or
1199
+ * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
1292
1200
  *
1293
- * @private
1294
- * @name delete
1295
- * @memberOf Stack
1296
- * @param {string} key The key of the value to remove.
1297
- * @returns {boolean} Returns `true` if the entry was removed, else `false`.
1201
+ * @static
1202
+ * @memberOf _
1203
+ * @since 4.0.0
1204
+ * @category Lang
1205
+ * @param {*} value The value to check.
1206
+ * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
1207
+ * @example
1208
+ *
1209
+ * _.isArrayLike([1, 2, 3]);
1210
+ * // => true
1211
+ *
1212
+ * _.isArrayLike(document.body.children);
1213
+ * // => true
1214
+ *
1215
+ * _.isArrayLike('abc');
1216
+ * // => true
1217
+ *
1218
+ * _.isArrayLike(_.noop);
1219
+ * // => false
1298
1220
  */
1299
- function stackDelete(key) {
1300
- var data = this.__data__, result = data["delete"](key);
1301
- this.size = data.size;
1302
- return result;
1221
+ function isArrayLike(value) {
1222
+ return value != null && isLength(value.length) && !isFunction(value);
1303
1223
  }
1304
1224
  //#endregion
1305
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackGet.js
1225
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/keys.js
1306
1226
  /**
1307
- * Gets the stack value for `key`.
1227
+ * Creates an array of the own enumerable property names of `object`.
1308
1228
  *
1309
- * @private
1310
- * @name get
1311
- * @memberOf Stack
1312
- * @param {string} key The key of the value to get.
1313
- * @returns {*} Returns the entry value.
1229
+ * **Note:** Non-object values are coerced to objects. See the
1230
+ * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)
1231
+ * for more details.
1232
+ *
1233
+ * @static
1234
+ * @since 0.1.0
1235
+ * @memberOf _
1236
+ * @category Object
1237
+ * @param {Object} object The object to query.
1238
+ * @returns {Array} Returns the array of property names.
1239
+ * @example
1240
+ *
1241
+ * function Foo() {
1242
+ * this.a = 1;
1243
+ * this.b = 2;
1244
+ * }
1245
+ *
1246
+ * Foo.prototype.c = 3;
1247
+ *
1248
+ * _.keys(new Foo);
1249
+ * // => ['a', 'b'] (iteration order is not guaranteed)
1250
+ *
1251
+ * _.keys('hi');
1252
+ * // => ['0', '1']
1314
1253
  */
1315
- function stackGet(key) {
1316
- return this.__data__.get(key);
1254
+ function keys(object) {
1255
+ return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);
1317
1256
  }
1318
1257
  //#endregion
1319
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackHas.js
1258
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseAssign.js
1320
1259
  /**
1321
- * Checks if a stack value for `key` exists.
1260
+ * The base implementation of `_.assign` without support for multiple sources
1261
+ * or `customizer` functions.
1322
1262
  *
1323
1263
  * @private
1324
- * @name has
1325
- * @memberOf Stack
1326
- * @param {string} key The key of the entry to check.
1327
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
1264
+ * @param {Object} object The destination object.
1265
+ * @param {Object} source The source object.
1266
+ * @returns {Object} Returns `object`.
1328
1267
  */
1329
- function stackHas(key) {
1330
- return this.__data__.has(key);
1268
+ function baseAssign(object, source) {
1269
+ return object && copyObject(source, keys(source), object);
1331
1270
  }
1332
1271
  //#endregion
1333
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackSet.js
1334
- /** Used as the size to enable large array optimizations. */
1335
- var LARGE_ARRAY_SIZE = 200;
1272
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nativeKeysIn.js
1336
1273
  /**
1337
- * Sets the stack `key` to `value`.
1274
+ * This function is like
1275
+ * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)
1276
+ * except that it includes inherited enumerable properties.
1338
1277
  *
1339
1278
  * @private
1340
- * @name set
1341
- * @memberOf Stack
1342
- * @param {string} key The key of the value to set.
1343
- * @param {*} value The value to set.
1344
- * @returns {Object} Returns the stack cache instance.
1279
+ * @param {Object} object The object to query.
1280
+ * @returns {Array} Returns the array of property names.
1345
1281
  */
1346
- function stackSet(key, value) {
1347
- var data = this.__data__;
1348
- if (data instanceof ListCache) {
1349
- var pairs = data.__data__;
1350
- if (!Map || pairs.length < LARGE_ARRAY_SIZE - 1) {
1351
- pairs.push([key, value]);
1352
- this.size = ++data.size;
1353
- return this;
1354
- }
1355
- data = this.__data__ = new MapCache(pairs);
1356
- }
1357
- data.set(key, value);
1358
- this.size = data.size;
1359
- return this;
1282
+ function nativeKeysIn(object) {
1283
+ var result = [];
1284
+ if (object != null) for (var key in Object(object)) result.push(key);
1285
+ return result;
1360
1286
  }
1361
1287
  //#endregion
1362
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Stack.js
1288
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseKeysIn.js
1289
+ /** Used to check objects for own properties. */
1290
+ var hasOwnProperty$1 = Object.prototype.hasOwnProperty;
1363
1291
  /**
1364
- * Creates a stack cache object to store key-value pairs.
1292
+ * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.
1365
1293
  *
1366
1294
  * @private
1367
- * @constructor
1368
- * @param {Array} [entries] The key-value pairs to cache.
1295
+ * @param {Object} object The object to query.
1296
+ * @returns {Array} Returns the array of property names.
1369
1297
  */
1370
- function Stack(entries) {
1371
- var data = this.__data__ = new ListCache(entries);
1372
- this.size = data.size;
1298
+ function baseKeysIn(object) {
1299
+ if (!isObject(object)) return nativeKeysIn(object);
1300
+ var isProto = isPrototype(object), result = [];
1301
+ for (var key in object) if (!(key == "constructor" && (isProto || !hasOwnProperty$1.call(object, key)))) result.push(key);
1302
+ return result;
1373
1303
  }
1374
- Stack.prototype.clear = stackClear;
1375
- Stack.prototype["delete"] = stackDelete;
1376
- Stack.prototype.get = stackGet;
1377
- Stack.prototype.has = stackHas;
1378
- Stack.prototype.set = stackSet;
1379
1304
  //#endregion
1380
- //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseAssign.js
1305
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/keysIn.js
1381
1306
  /**
1382
- * The base implementation of `_.assign` without support for multiple sources
1383
- * or `customizer` functions.
1307
+ * Creates an array of the own and inherited enumerable property names of `object`.
1384
1308
  *
1385
- * @private
1386
- * @param {Object} object The destination object.
1387
- * @param {Object} source The source object.
1388
- * @returns {Object} Returns `object`.
1309
+ * **Note:** Non-object values are coerced to objects.
1310
+ *
1311
+ * @static
1312
+ * @memberOf _
1313
+ * @since 3.0.0
1314
+ * @category Object
1315
+ * @param {Object} object The object to query.
1316
+ * @returns {Array} Returns the array of property names.
1317
+ * @example
1318
+ *
1319
+ * function Foo() {
1320
+ * this.a = 1;
1321
+ * this.b = 2;
1322
+ * }
1323
+ *
1324
+ * Foo.prototype.c = 3;
1325
+ *
1326
+ * _.keysIn(new Foo);
1327
+ * // => ['a', 'b', 'c'] (iteration order is not guaranteed)
1389
1328
  */
1390
- function baseAssign(object, source) {
1391
- return object && copyObject(source, keys(source), object);
1329
+ function keysIn(object) {
1330
+ return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);
1392
1331
  }
1393
1332
  //#endregion
1394
1333
  //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseAssignIn.js
@@ -1427,6 +1366,22 @@
1427
1366
  return result;
1428
1367
  }
1429
1368
  //#endregion
1369
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyArray.js
1370
+ /**
1371
+ * Copies the values of `source` to `array`.
1372
+ *
1373
+ * @private
1374
+ * @param {Array} source The array to copy values from.
1375
+ * @param {Array} [array=[]] The array to copy values to.
1376
+ * @returns {Array} Returns `array`.
1377
+ */
1378
+ function copyArray(source, array) {
1379
+ var index = -1, length = source.length;
1380
+ array || (array = Array(length));
1381
+ while (++index < length) array[index] = source[index];
1382
+ return array;
1383
+ }
1384
+ //#endregion
1430
1385
  //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayFilter.js
1431
1386
  /**
1432
1387
  * A specialized version of `_.filter` for arrays without support for
@@ -1501,6 +1456,25 @@
1501
1456
  return copyObject(source, getSymbols(source), object);
1502
1457
  }
1503
1458
  //#endregion
1459
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayPush.js
1460
+ /**
1461
+ * Appends the elements of `values` to `array`.
1462
+ *
1463
+ * @private
1464
+ * @param {Array} array The array to modify.
1465
+ * @param {Array} values The values to append.
1466
+ * @returns {Array} Returns `array`.
1467
+ */
1468
+ function arrayPush(array, values) {
1469
+ var index = -1, length = values.length, offset = array.length;
1470
+ while (++index < length) array[offset + index] = values[index];
1471
+ return array;
1472
+ }
1473
+ //#endregion
1474
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getPrototype.js
1475
+ /** Built-in value references. */
1476
+ var getPrototype = overArg(Object.getPrototypeOf, Object);
1477
+ //#endregion
1504
1478
  //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getSymbolsIn.js
1505
1479
  /**
1506
1480
  * Creates an array of the own and inherited enumerable symbols of `object`.
@@ -1582,6 +1556,9 @@
1582
1556
  //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Set.js
1583
1557
  var Set = getNative(root, "Set");
1584
1558
  //#endregion
1559
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_WeakMap.js
1560
+ var WeakMap = getNative(root, "WeakMap");
1561
+ //#endregion
1585
1562
  //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getTag.js
1586
1563
  /** `Object#toString` result references. */
1587
1564
  var mapTag$3 = "[object Map]", objectTag$1 = "[object Object]", promiseTag = "[object Promise]", setTag$3 = "[object Set]", weakMapTag$1 = "[object WeakMap]";
@@ -1745,6 +1722,29 @@
1745
1722
  }
1746
1723
  }
1747
1724
  //#endregion
1725
+ //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseCreate.js
1726
+ /** Built-in value references. */
1727
+ var objectCreate = Object.create;
1728
+ /**
1729
+ * The base implementation of `_.create` without support for assigning
1730
+ * properties to the created object.
1731
+ *
1732
+ * @private
1733
+ * @param {Object} proto The object to inherit from.
1734
+ * @returns {Object} Returns the new object.
1735
+ */
1736
+ var baseCreate = function() {
1737
+ function object() {}
1738
+ return function(proto) {
1739
+ if (!isObject(proto)) return {};
1740
+ if (objectCreate) return objectCreate(proto);
1741
+ object.prototype = proto;
1742
+ var result = new object();
1743
+ object.prototype = void 0;
1744
+ return result;
1745
+ };
1746
+ }();
1747
+ //#endregion
1748
1748
  //#region node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_initCloneObject.js
1749
1749
  /**
1750
1750
  * Initializes an object clone.