@rspress/shared 0.0.0-nightly-20230916160138 → 0.0.2

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/dist/index.js CHANGED
@@ -1,54 +1,118 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
1
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheClear.js
2
+ function listCacheClear() {
3
+ this.__data__ = [];
4
+ this.size = 0;
5
+ }
6
+ var listCacheClear_default = listCacheClear;
7
+
8
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/eq.js
9
+ function eq(value, other) {
10
+ return value === other || value !== value && other !== other;
11
+ }
12
+ var eq_default = eq;
13
+
14
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_assocIndexOf.js
15
+ function assocIndexOf(array, key) {
16
+ var length = array.length;
17
+ while (length--) {
18
+ if (eq_default(array[length][0], key)) {
19
+ return length;
20
+ }
14
21
  }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
-
19
- // src/index.ts
20
- var src_exports = {};
21
- __export(src_exports, {
22
- APPEARANCE_KEY: () => APPEARANCE_KEY,
23
- HASH_REGEXP: () => HASH_REGEXP,
24
- MDX_REGEXP: () => MDX_REGEXP,
25
- QUERY_REGEXP: () => QUERY_REGEXP,
26
- RSPRESS_TEMP_DIR: () => RSPRESS_TEMP_DIR,
27
- SEARCH_INDEX_NAME: () => SEARCH_INDEX_NAME,
28
- addLeadingSlash: () => addLeadingSlash,
29
- cleanUrl: () => cleanUrl,
30
- inBrowser: () => inBrowser,
31
- isDebugMode: () => isDebugMode,
32
- isExternalUrl: () => isExternalUrl,
33
- isProduction: () => isProduction,
34
- isSCM: () => isSCM,
35
- mergeDocConfig: () => mergeDocConfig,
36
- normalizeHref: () => normalizeHref,
37
- normalizePosixPath: () => normalizePosixPath,
38
- normalizeSlash: () => normalizeSlash,
39
- omit: () => omit,
40
- parseUrl: () => parseUrl,
41
- removeBase: () => removeBase,
42
- removeLeadingSlash: () => removeLeadingSlash,
43
- removeTrailingSlash: () => removeTrailingSlash,
44
- replaceLang: () => replaceLang,
45
- slash: () => slash,
46
- withBase: () => withBase,
47
- withoutBase: () => withoutBase,
48
- withoutHash: () => withoutHash,
49
- withoutLang: () => withoutLang
50
- });
51
- module.exports = __toCommonJS(src_exports);
22
+ return -1;
23
+ }
24
+ var assocIndexOf_default = assocIndexOf;
25
+
26
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheDelete.js
27
+ var arrayProto = Array.prototype;
28
+ var splice = arrayProto.splice;
29
+ function listCacheDelete(key) {
30
+ var data = this.__data__, index = assocIndexOf_default(data, key);
31
+ if (index < 0) {
32
+ return false;
33
+ }
34
+ var lastIndex = data.length - 1;
35
+ if (index == lastIndex) {
36
+ data.pop();
37
+ } else {
38
+ splice.call(data, index, 1);
39
+ }
40
+ --this.size;
41
+ return true;
42
+ }
43
+ var listCacheDelete_default = listCacheDelete;
44
+
45
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheGet.js
46
+ function listCacheGet(key) {
47
+ var data = this.__data__, index = assocIndexOf_default(data, key);
48
+ return index < 0 ? void 0 : data[index][1];
49
+ }
50
+ var listCacheGet_default = listCacheGet;
51
+
52
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheHas.js
53
+ function listCacheHas(key) {
54
+ return assocIndexOf_default(this.__data__, key) > -1;
55
+ }
56
+ var listCacheHas_default = listCacheHas;
57
+
58
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheSet.js
59
+ function listCacheSet(key, value) {
60
+ var data = this.__data__, index = assocIndexOf_default(data, key);
61
+ if (index < 0) {
62
+ ++this.size;
63
+ data.push([
64
+ key,
65
+ value
66
+ ]);
67
+ } else {
68
+ data[index][1] = value;
69
+ }
70
+ return this;
71
+ }
72
+ var listCacheSet_default = listCacheSet;
73
+
74
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_ListCache.js
75
+ function ListCache(entries) {
76
+ var index = -1, length = entries == null ? 0 : entries.length;
77
+ this.clear();
78
+ while (++index < length) {
79
+ var entry = entries[index];
80
+ this.set(entry[0], entry[1]);
81
+ }
82
+ }
83
+ ListCache.prototype.clear = listCacheClear_default;
84
+ ListCache.prototype["delete"] = listCacheDelete_default;
85
+ ListCache.prototype.get = listCacheGet_default;
86
+ ListCache.prototype.has = listCacheHas_default;
87
+ ListCache.prototype.set = listCacheSet_default;
88
+ var ListCache_default = ListCache;
89
+
90
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackClear.js
91
+ function stackClear() {
92
+ this.__data__ = new ListCache_default();
93
+ this.size = 0;
94
+ }
95
+ var stackClear_default = stackClear;
96
+
97
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackDelete.js
98
+ function stackDelete(key) {
99
+ var data = this.__data__, result = data["delete"](key);
100
+ this.size = data.size;
101
+ return result;
102
+ }
103
+ var stackDelete_default = stackDelete;
104
+
105
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackGet.js
106
+ function stackGet(key) {
107
+ return this.__data__.get(key);
108
+ }
109
+ var stackGet_default = stackGet;
110
+
111
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackHas.js
112
+ function stackHas(key) {
113
+ return this.__data__.has(key);
114
+ }
115
+ var stackHas_default = stackHas;
52
116
 
53
117
  // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_freeGlobal.js
54
118
  var freeGlobal = typeof global == "object" && global && global.Object === Object && global;
@@ -60,8 +124,8 @@ var root = freeGlobal_default || freeSelf || Function("return this")();
60
124
  var root_default = root;
61
125
 
62
126
  // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Symbol.js
63
- var Symbol2 = root_default.Symbol;
64
- var Symbol_default = Symbol2;
127
+ var Symbol = root_default.Symbol;
128
+ var Symbol_default = Symbol;
65
129
 
66
130
  // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getRawTag.js
67
131
  var objectProto = Object.prototype;
@@ -107,16 +171,6 @@ function baseGetTag(value) {
107
171
  }
108
172
  var baseGetTag_default = baseGetTag;
109
173
 
110
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObjectLike.js
111
- function isObjectLike(value) {
112
- return value != null && typeof value == "object";
113
- }
114
- var isObjectLike_default = isObjectLike;
115
-
116
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArray.js
117
- var isArray = Array.isArray;
118
- var isArray_default = isArray;
119
-
120
174
  // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObject.js
121
175
  function isObject(value) {
122
176
  var type = typeof value;
@@ -124,12 +178,6 @@ function isObject(value) {
124
178
  }
125
179
  var isObject_default = isObject;
126
180
 
127
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/identity.js
128
- function identity(value) {
129
- return value;
130
- }
131
- var identity_default = identity;
132
-
133
181
  // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isFunction.js
134
182
  var asyncTag = "[object AsyncFunction]";
135
183
  var funcTag = "[object Function]";
@@ -183,9 +231,7 @@ var funcProto2 = Function.prototype;
183
231
  var objectProto3 = Object.prototype;
184
232
  var funcToString2 = funcProto2.toString;
185
233
  var hasOwnProperty2 = objectProto3.hasOwnProperty;
186
- var reIsNative = RegExp(
187
- "^" + funcToString2.call(hasOwnProperty2).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
188
- );
234
+ var reIsNative = RegExp("^" + funcToString2.call(hasOwnProperty2).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$");
189
235
  function baseIsNative(value) {
190
236
  if (!isObject_default(value) || isMasked_default(value)) {
191
237
  return false;
@@ -208,473 +254,134 @@ function getNative(object, key) {
208
254
  }
209
255
  var getNative_default = getNative;
210
256
 
211
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseCreate.js
212
- var objectCreate = Object.create;
213
- var baseCreate = function() {
214
- function object() {
215
- }
216
- return function(proto) {
217
- if (!isObject_default(proto)) {
218
- return {};
219
- }
220
- if (objectCreate) {
221
- return objectCreate(proto);
222
- }
223
- object.prototype = proto;
224
- var result = new object();
225
- object.prototype = void 0;
226
- return result;
227
- };
228
- }();
229
- var baseCreate_default = baseCreate;
257
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Map.js
258
+ var Map = getNative_default(root_default, "Map");
259
+ var Map_default = Map;
230
260
 
231
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_apply.js
232
- function apply(func, thisArg, args) {
233
- switch (args.length) {
234
- case 0:
235
- return func.call(thisArg);
236
- case 1:
237
- return func.call(thisArg, args[0]);
238
- case 2:
239
- return func.call(thisArg, args[0], args[1]);
240
- case 3:
241
- return func.call(thisArg, args[0], args[1], args[2]);
242
- }
243
- return func.apply(thisArg, args);
261
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nativeCreate.js
262
+ var nativeCreate = getNative_default(Object, "create");
263
+ var nativeCreate_default = nativeCreate;
264
+
265
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashClear.js
266
+ function hashClear() {
267
+ this.__data__ = nativeCreate_default ? nativeCreate_default(null) : {};
268
+ this.size = 0;
244
269
  }
245
- var apply_default = apply;
270
+ var hashClear_default = hashClear;
246
271
 
247
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyArray.js
248
- function copyArray(source, array) {
249
- var index = -1, length = source.length;
250
- array || (array = Array(length));
251
- while (++index < length) {
252
- array[index] = source[index];
272
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashDelete.js
273
+ function hashDelete(key) {
274
+ var result = this.has(key) && delete this.__data__[key];
275
+ this.size -= result ? 1 : 0;
276
+ return result;
277
+ }
278
+ var hashDelete_default = hashDelete;
279
+
280
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashGet.js
281
+ var HASH_UNDEFINED = "__lodash_hash_undefined__";
282
+ var objectProto4 = Object.prototype;
283
+ var hasOwnProperty3 = objectProto4.hasOwnProperty;
284
+ function hashGet(key) {
285
+ var data = this.__data__;
286
+ if (nativeCreate_default) {
287
+ var result = data[key];
288
+ return result === HASH_UNDEFINED ? void 0 : result;
253
289
  }
254
- return array;
290
+ return hasOwnProperty3.call(data, key) ? data[key] : void 0;
255
291
  }
256
- var copyArray_default = copyArray;
292
+ var hashGet_default = hashGet;
257
293
 
258
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_shortOut.js
259
- var HOT_COUNT = 800;
260
- var HOT_SPAN = 16;
261
- var nativeNow = Date.now;
262
- function shortOut(func) {
263
- var count = 0, lastCalled = 0;
264
- return function() {
265
- var stamp = nativeNow(), remaining = HOT_SPAN - (stamp - lastCalled);
266
- lastCalled = stamp;
267
- if (remaining > 0) {
268
- if (++count >= HOT_COUNT) {
269
- return arguments[0];
270
- }
271
- } else {
272
- count = 0;
273
- }
274
- return func.apply(void 0, arguments);
275
- };
294
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashHas.js
295
+ var objectProto5 = Object.prototype;
296
+ var hasOwnProperty4 = objectProto5.hasOwnProperty;
297
+ function hashHas(key) {
298
+ var data = this.__data__;
299
+ return nativeCreate_default ? data[key] !== void 0 : hasOwnProperty4.call(data, key);
276
300
  }
277
- var shortOut_default = shortOut;
301
+ var hashHas_default = hashHas;
278
302
 
279
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/constant.js
280
- function constant(value) {
281
- return function() {
282
- return value;
283
- };
303
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashSet.js
304
+ var HASH_UNDEFINED2 = "__lodash_hash_undefined__";
305
+ function hashSet(key, value) {
306
+ var data = this.__data__;
307
+ this.size += this.has(key) ? 0 : 1;
308
+ data[key] = nativeCreate_default && value === void 0 ? HASH_UNDEFINED2 : value;
309
+ return this;
284
310
  }
285
- var constant_default = constant;
311
+ var hashSet_default = hashSet;
286
312
 
287
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_defineProperty.js
288
- var defineProperty = function() {
289
- try {
290
- var func = getNative_default(Object, "defineProperty");
291
- func({}, "", {});
292
- return func;
293
- } catch (e) {
313
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Hash.js
314
+ function Hash(entries) {
315
+ var index = -1, length = entries == null ? 0 : entries.length;
316
+ this.clear();
317
+ while (++index < length) {
318
+ var entry = entries[index];
319
+ this.set(entry[0], entry[1]);
294
320
  }
295
- }();
296
- var defineProperty_default = defineProperty;
297
-
298
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseSetToString.js
299
- var baseSetToString = !defineProperty_default ? identity_default : function(func, string) {
300
- return defineProperty_default(func, "toString", {
301
- "configurable": true,
302
- "enumerable": false,
303
- "value": constant_default(string),
304
- "writable": true
305
- });
306
- };
307
- var baseSetToString_default = baseSetToString;
308
-
309
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_setToString.js
310
- var setToString = shortOut_default(baseSetToString_default);
311
- var setToString_default = setToString;
312
-
313
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isIndex.js
314
- var MAX_SAFE_INTEGER = 9007199254740991;
315
- var reIsUint = /^(?:0|[1-9]\d*)$/;
316
- function isIndex(value, length) {
317
- var type = typeof value;
318
- length = length == null ? MAX_SAFE_INTEGER : length;
319
- return !!length && (type == "number" || type != "symbol" && reIsUint.test(value)) && (value > -1 && value % 1 == 0 && value < length);
320
- }
321
- var isIndex_default = isIndex;
322
-
323
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseAssignValue.js
324
- function baseAssignValue(object, key, value) {
325
- if (key == "__proto__" && defineProperty_default) {
326
- defineProperty_default(object, key, {
327
- "configurable": true,
328
- "enumerable": true,
329
- "value": value,
330
- "writable": true
331
- });
332
- } else {
333
- object[key] = value;
334
- }
335
- }
336
- var baseAssignValue_default = baseAssignValue;
337
-
338
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/eq.js
339
- function eq(value, other) {
340
- return value === other || value !== value && other !== other;
341
- }
342
- var eq_default = eq;
343
-
344
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_assignValue.js
345
- var objectProto4 = Object.prototype;
346
- var hasOwnProperty3 = objectProto4.hasOwnProperty;
347
- function assignValue(object, key, value) {
348
- var objValue = object[key];
349
- if (!(hasOwnProperty3.call(object, key) && eq_default(objValue, value)) || value === void 0 && !(key in object)) {
350
- baseAssignValue_default(object, key, value);
351
- }
352
- }
353
- var assignValue_default = assignValue;
354
-
355
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyObject.js
356
- function copyObject(source, props, object, customizer) {
357
- var isNew = !object;
358
- object || (object = {});
359
- var index = -1, length = props.length;
360
- while (++index < length) {
361
- var key = props[index];
362
- var newValue = customizer ? customizer(object[key], source[key], key, object, source) : void 0;
363
- if (newValue === void 0) {
364
- newValue = source[key];
365
- }
366
- if (isNew) {
367
- baseAssignValue_default(object, key, newValue);
368
- } else {
369
- assignValue_default(object, key, newValue);
370
- }
371
- }
372
- return object;
373
- }
374
- var copyObject_default = copyObject;
375
-
376
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_overRest.js
377
- var nativeMax = Math.max;
378
- function overRest(func, start, transform) {
379
- start = nativeMax(start === void 0 ? func.length - 1 : start, 0);
380
- return function() {
381
- var args = arguments, index = -1, length = nativeMax(args.length - start, 0), array = Array(length);
382
- while (++index < length) {
383
- array[index] = args[start + index];
384
- }
385
- index = -1;
386
- var otherArgs = Array(start + 1);
387
- while (++index < start) {
388
- otherArgs[index] = args[index];
389
- }
390
- otherArgs[start] = transform(array);
391
- return apply_default(func, this, otherArgs);
392
- };
393
- }
394
- var overRest_default = overRest;
395
-
396
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseRest.js
397
- function baseRest(func, start) {
398
- return setToString_default(overRest_default(func, start, identity_default), func + "");
399
- }
400
- var baseRest_default = baseRest;
401
-
402
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isLength.js
403
- var MAX_SAFE_INTEGER2 = 9007199254740991;
404
- function isLength(value) {
405
- return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER2;
406
- }
407
- var isLength_default = isLength;
408
-
409
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArrayLike.js
410
- function isArrayLike(value) {
411
- return value != null && isLength_default(value.length) && !isFunction_default(value);
412
- }
413
- var isArrayLike_default = isArrayLike;
414
-
415
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isIterateeCall.js
416
- function isIterateeCall(value, index, object) {
417
- if (!isObject_default(object)) {
418
- return false;
419
- }
420
- var type = typeof index;
421
- if (type == "number" ? isArrayLike_default(object) && isIndex_default(index, object.length) : type == "string" && index in object) {
422
- return eq_default(object[index], value);
423
- }
424
- return false;
425
- }
426
- var isIterateeCall_default = isIterateeCall;
427
-
428
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_createAssigner.js
429
- function createAssigner(assigner) {
430
- return baseRest_default(function(object, sources) {
431
- var index = -1, length = sources.length, customizer = length > 1 ? sources[length - 1] : void 0, guard = length > 2 ? sources[2] : void 0;
432
- customizer = assigner.length > 3 && typeof customizer == "function" ? (length--, customizer) : void 0;
433
- if (guard && isIterateeCall_default(sources[0], sources[1], guard)) {
434
- customizer = length < 3 ? void 0 : customizer;
435
- length = 1;
436
- }
437
- object = Object(object);
438
- while (++index < length) {
439
- var source = sources[index];
440
- if (source) {
441
- assigner(object, source, index, customizer);
442
- }
443
- }
444
- return object;
445
- });
446
- }
447
- var createAssigner_default = createAssigner;
448
-
449
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isPrototype.js
450
- var objectProto5 = Object.prototype;
451
- function isPrototype(value) {
452
- var Ctor = value && value.constructor, proto = typeof Ctor == "function" && Ctor.prototype || objectProto5;
453
- return value === proto;
454
- }
455
- var isPrototype_default = isPrototype;
456
-
457
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseTimes.js
458
- function baseTimes(n, iteratee) {
459
- var index = -1, result = Array(n);
460
- while (++index < n) {
461
- result[index] = iteratee(index);
462
- }
463
- return result;
464
- }
465
- var baseTimes_default = baseTimes;
466
-
467
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseIsArguments.js
468
- var argsTag = "[object Arguments]";
469
- function baseIsArguments(value) {
470
- return isObjectLike_default(value) && baseGetTag_default(value) == argsTag;
471
- }
472
- var baseIsArguments_default = baseIsArguments;
473
-
474
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArguments.js
475
- var objectProto6 = Object.prototype;
476
- var hasOwnProperty4 = objectProto6.hasOwnProperty;
477
- var propertyIsEnumerable = objectProto6.propertyIsEnumerable;
478
- var isArguments = baseIsArguments_default(function() {
479
- return arguments;
480
- }()) ? baseIsArguments_default : function(value) {
481
- return isObjectLike_default(value) && hasOwnProperty4.call(value, "callee") && !propertyIsEnumerable.call(value, "callee");
482
- };
483
- var isArguments_default = isArguments;
484
-
485
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/stubFalse.js
486
- function stubFalse() {
487
- return false;
488
- }
489
- var stubFalse_default = stubFalse;
490
-
491
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isBuffer.js
492
- var freeExports = typeof exports == "object" && exports && !exports.nodeType && exports;
493
- var freeModule = freeExports && typeof module == "object" && module && !module.nodeType && module;
494
- var moduleExports = freeModule && freeModule.exports === freeExports;
495
- var Buffer2 = moduleExports ? root_default.Buffer : void 0;
496
- var nativeIsBuffer = Buffer2 ? Buffer2.isBuffer : void 0;
497
- var isBuffer = nativeIsBuffer || stubFalse_default;
498
- var isBuffer_default = isBuffer;
499
-
500
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseIsTypedArray.js
501
- var argsTag2 = "[object Arguments]";
502
- var arrayTag = "[object Array]";
503
- var boolTag = "[object Boolean]";
504
- var dateTag = "[object Date]";
505
- var errorTag = "[object Error]";
506
- var funcTag2 = "[object Function]";
507
- var mapTag = "[object Map]";
508
- var numberTag = "[object Number]";
509
- var objectTag = "[object Object]";
510
- var regexpTag = "[object RegExp]";
511
- var setTag = "[object Set]";
512
- var stringTag = "[object String]";
513
- var weakMapTag = "[object WeakMap]";
514
- var arrayBufferTag = "[object ArrayBuffer]";
515
- var dataViewTag = "[object DataView]";
516
- var float32Tag = "[object Float32Array]";
517
- var float64Tag = "[object Float64Array]";
518
- var int8Tag = "[object Int8Array]";
519
- var int16Tag = "[object Int16Array]";
520
- var int32Tag = "[object Int32Array]";
521
- var uint8Tag = "[object Uint8Array]";
522
- var uint8ClampedTag = "[object Uint8ClampedArray]";
523
- var uint16Tag = "[object Uint16Array]";
524
- var uint32Tag = "[object Uint32Array]";
525
- var typedArrayTags = {};
526
- typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true;
527
- typedArrayTags[argsTag2] = typedArrayTags[arrayTag] = typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = typedArrayTags[errorTag] = typedArrayTags[funcTag2] = typedArrayTags[mapTag] = typedArrayTags[numberTag] = typedArrayTags[objectTag] = typedArrayTags[regexpTag] = typedArrayTags[setTag] = typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false;
528
- function baseIsTypedArray(value) {
529
- return isObjectLike_default(value) && isLength_default(value.length) && !!typedArrayTags[baseGetTag_default(value)];
530
- }
531
- var baseIsTypedArray_default = baseIsTypedArray;
532
-
533
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseUnary.js
534
- function baseUnary(func) {
535
- return function(value) {
536
- return func(value);
537
- };
538
- }
539
- var baseUnary_default = baseUnary;
540
-
541
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nodeUtil.js
542
- var freeExports2 = typeof exports == "object" && exports && !exports.nodeType && exports;
543
- var freeModule2 = freeExports2 && typeof module == "object" && module && !module.nodeType && module;
544
- var moduleExports2 = freeModule2 && freeModule2.exports === freeExports2;
545
- var freeProcess = moduleExports2 && freeGlobal_default.process;
546
- var nodeUtil = function() {
547
- try {
548
- var types = freeModule2 && freeModule2.require && freeModule2.require("util").types;
549
- if (types) {
550
- return types;
551
- }
552
- return freeProcess && freeProcess.binding && freeProcess.binding("util");
553
- } catch (e) {
554
- }
555
- }();
556
- var nodeUtil_default = nodeUtil;
557
-
558
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isTypedArray.js
559
- var nodeIsTypedArray = nodeUtil_default && nodeUtil_default.isTypedArray;
560
- var isTypedArray = nodeIsTypedArray ? baseUnary_default(nodeIsTypedArray) : baseIsTypedArray_default;
561
- var isTypedArray_default = isTypedArray;
562
-
563
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayLikeKeys.js
564
- var objectProto7 = Object.prototype;
565
- var hasOwnProperty5 = objectProto7.hasOwnProperty;
566
- function arrayLikeKeys(value, inherited) {
567
- var isArr = isArray_default(value), isArg = !isArr && isArguments_default(value), isBuff = !isArr && !isArg && isBuffer_default(value), isType = !isArr && !isArg && !isBuff && isTypedArray_default(value), skipIndexes = isArr || isArg || isBuff || isType, result = skipIndexes ? baseTimes_default(value.length, String) : [], length = result.length;
568
- for (var key in value) {
569
- if ((inherited || hasOwnProperty5.call(value, key)) && !(skipIndexes && // Safari 9 has enumerable `arguments.length` in strict mode.
570
- (key == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
571
- isBuff && (key == "offset" || key == "parent") || // PhantomJS 2 has enumerable non-index properties on typed arrays.
572
- isType && (key == "buffer" || key == "byteLength" || key == "byteOffset") || // Skip index properties.
573
- isIndex_default(key, length)))) {
574
- result.push(key);
575
- }
576
- }
577
- return result;
578
321
  }
579
- var arrayLikeKeys_default = arrayLikeKeys;
322
+ Hash.prototype.clear = hashClear_default;
323
+ Hash.prototype["delete"] = hashDelete_default;
324
+ Hash.prototype.get = hashGet_default;
325
+ Hash.prototype.has = hashHas_default;
326
+ Hash.prototype.set = hashSet_default;
327
+ var Hash_default = Hash;
580
328
 
581
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_overArg.js
582
- function overArg(func, transform) {
583
- return function(arg) {
584
- return func(transform(arg));
329
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheClear.js
330
+ function mapCacheClear() {
331
+ this.size = 0;
332
+ this.__data__ = {
333
+ "hash": new Hash_default(),
334
+ "map": new (Map_default || ListCache_default)(),
335
+ "string": new Hash_default()
585
336
  };
586
337
  }
587
- var overArg_default = overArg;
588
-
589
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nativeKeysIn.js
590
- function nativeKeysIn(object) {
591
- var result = [];
592
- if (object != null) {
593
- for (var key in Object(object)) {
594
- result.push(key);
595
- }
596
- }
597
- return result;
598
- }
599
- var nativeKeysIn_default = nativeKeysIn;
600
-
601
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseKeysIn.js
602
- var objectProto8 = Object.prototype;
603
- var hasOwnProperty6 = objectProto8.hasOwnProperty;
604
- function baseKeysIn(object) {
605
- if (!isObject_default(object)) {
606
- return nativeKeysIn_default(object);
607
- }
608
- var isProto = isPrototype_default(object), result = [];
609
- for (var key in object) {
610
- if (!(key == "constructor" && (isProto || !hasOwnProperty6.call(object, key)))) {
611
- result.push(key);
612
- }
613
- }
614
- return result;
615
- }
616
- var baseKeysIn_default = baseKeysIn;
338
+ var mapCacheClear_default = mapCacheClear;
617
339
 
618
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/keysIn.js
619
- function keysIn(object) {
620
- return isArrayLike_default(object) ? arrayLikeKeys_default(object, true) : baseKeysIn_default(object);
340
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isKeyable.js
341
+ function isKeyable(value) {
342
+ var type = typeof value;
343
+ return type == "string" || type == "number" || type == "symbol" || type == "boolean" ? value !== "__proto__" : value === null;
621
344
  }
622
- var keysIn_default = keysIn;
623
-
624
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nativeCreate.js
625
- var nativeCreate = getNative_default(Object, "create");
626
- var nativeCreate_default = nativeCreate;
345
+ var isKeyable_default = isKeyable;
627
346
 
628
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashClear.js
629
- function hashClear() {
630
- this.__data__ = nativeCreate_default ? nativeCreate_default(null) : {};
631
- this.size = 0;
347
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getMapData.js
348
+ function getMapData(map, key) {
349
+ var data = map.__data__;
350
+ return isKeyable_default(key) ? data[typeof key == "string" ? "string" : "hash"] : data.map;
632
351
  }
633
- var hashClear_default = hashClear;
352
+ var getMapData_default = getMapData;
634
353
 
635
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashDelete.js
636
- function hashDelete(key) {
637
- var result = this.has(key) && delete this.__data__[key];
354
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheDelete.js
355
+ function mapCacheDelete(key) {
356
+ var result = getMapData_default(this, key)["delete"](key);
638
357
  this.size -= result ? 1 : 0;
639
358
  return result;
640
359
  }
641
- var hashDelete_default = hashDelete;
360
+ var mapCacheDelete_default = mapCacheDelete;
642
361
 
643
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashGet.js
644
- var HASH_UNDEFINED = "__lodash_hash_undefined__";
645
- var objectProto9 = Object.prototype;
646
- var hasOwnProperty7 = objectProto9.hasOwnProperty;
647
- function hashGet(key) {
648
- var data = this.__data__;
649
- if (nativeCreate_default) {
650
- var result = data[key];
651
- return result === HASH_UNDEFINED ? void 0 : result;
652
- }
653
- return hasOwnProperty7.call(data, key) ? data[key] : void 0;
362
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheGet.js
363
+ function mapCacheGet(key) {
364
+ return getMapData_default(this, key).get(key);
654
365
  }
655
- var hashGet_default = hashGet;
366
+ var mapCacheGet_default = mapCacheGet;
656
367
 
657
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashHas.js
658
- var objectProto10 = Object.prototype;
659
- var hasOwnProperty8 = objectProto10.hasOwnProperty;
660
- function hashHas(key) {
661
- var data = this.__data__;
662
- return nativeCreate_default ? data[key] !== void 0 : hasOwnProperty8.call(data, key);
368
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheHas.js
369
+ function mapCacheHas(key) {
370
+ return getMapData_default(this, key).has(key);
663
371
  }
664
- var hashHas_default = hashHas;
372
+ var mapCacheHas_default = mapCacheHas;
665
373
 
666
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_hashSet.js
667
- var HASH_UNDEFINED2 = "__lodash_hash_undefined__";
668
- function hashSet(key, value) {
669
- var data = this.__data__;
670
- this.size += this.has(key) ? 0 : 1;
671
- data[key] = nativeCreate_default && value === void 0 ? HASH_UNDEFINED2 : value;
374
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheSet.js
375
+ function mapCacheSet(key, value) {
376
+ var data = getMapData_default(this, key), size = data.size;
377
+ data.set(key, value);
378
+ this.size += data.size == size ? 0 : 1;
672
379
  return this;
673
380
  }
674
- var hashSet_default = hashSet;
381
+ var mapCacheSet_default = mapCacheSet;
675
382
 
676
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Hash.js
677
- function Hash(entries) {
383
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_MapCache.js
384
+ function MapCache(entries) {
678
385
  var index = -1, length = entries == null ? 0 : entries.length;
679
386
  this.clear();
680
387
  while (++index < length) {
@@ -682,344 +389,453 @@ function Hash(entries) {
682
389
  this.set(entry[0], entry[1]);
683
390
  }
684
391
  }
685
- Hash.prototype.clear = hashClear_default;
686
- Hash.prototype["delete"] = hashDelete_default;
687
- Hash.prototype.get = hashGet_default;
688
- Hash.prototype.has = hashHas_default;
689
- Hash.prototype.set = hashSet_default;
690
- var Hash_default = Hash;
691
-
692
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheClear.js
693
- function listCacheClear() {
694
- this.__data__ = [];
695
- this.size = 0;
696
- }
697
- var listCacheClear_default = listCacheClear;
392
+ MapCache.prototype.clear = mapCacheClear_default;
393
+ MapCache.prototype["delete"] = mapCacheDelete_default;
394
+ MapCache.prototype.get = mapCacheGet_default;
395
+ MapCache.prototype.has = mapCacheHas_default;
396
+ MapCache.prototype.set = mapCacheSet_default;
397
+ var MapCache_default = MapCache;
698
398
 
699
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_assocIndexOf.js
700
- function assocIndexOf(array, key) {
701
- var length = array.length;
702
- while (length--) {
703
- if (eq_default(array[length][0], key)) {
704
- return length;
399
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackSet.js
400
+ var LARGE_ARRAY_SIZE = 200;
401
+ function stackSet(key, value) {
402
+ var data = this.__data__;
403
+ if (data instanceof ListCache_default) {
404
+ var pairs = data.__data__;
405
+ if (!Map_default || pairs.length < LARGE_ARRAY_SIZE - 1) {
406
+ pairs.push([
407
+ key,
408
+ value
409
+ ]);
410
+ this.size = ++data.size;
411
+ return this;
705
412
  }
413
+ data = this.__data__ = new MapCache_default(pairs);
706
414
  }
707
- return -1;
415
+ data.set(key, value);
416
+ this.size = data.size;
417
+ return this;
708
418
  }
709
- var assocIndexOf_default = assocIndexOf;
419
+ var stackSet_default = stackSet;
710
420
 
711
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheDelete.js
712
- var arrayProto = Array.prototype;
713
- var splice = arrayProto.splice;
714
- function listCacheDelete(key) {
715
- var data = this.__data__, index = assocIndexOf_default(data, key);
716
- if (index < 0) {
717
- return false;
421
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Stack.js
422
+ function Stack(entries) {
423
+ var data = this.__data__ = new ListCache_default(entries);
424
+ this.size = data.size;
425
+ }
426
+ Stack.prototype.clear = stackClear_default;
427
+ Stack.prototype["delete"] = stackDelete_default;
428
+ Stack.prototype.get = stackGet_default;
429
+ Stack.prototype.has = stackHas_default;
430
+ Stack.prototype.set = stackSet_default;
431
+ var Stack_default = Stack;
432
+
433
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_defineProperty.js
434
+ var defineProperty = function() {
435
+ try {
436
+ var func = getNative_default(Object, "defineProperty");
437
+ func({}, "", {});
438
+ return func;
439
+ } catch (e) {
718
440
  }
719
- var lastIndex = data.length - 1;
720
- if (index == lastIndex) {
721
- data.pop();
441
+ }();
442
+ var defineProperty_default = defineProperty;
443
+
444
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseAssignValue.js
445
+ function baseAssignValue(object, key, value) {
446
+ if (key == "__proto__" && defineProperty_default) {
447
+ defineProperty_default(object, key, {
448
+ "configurable": true,
449
+ "enumerable": true,
450
+ "value": value,
451
+ "writable": true
452
+ });
722
453
  } else {
723
- splice.call(data, index, 1);
454
+ object[key] = value;
724
455
  }
725
- --this.size;
726
- return true;
727
456
  }
728
- var listCacheDelete_default = listCacheDelete;
457
+ var baseAssignValue_default = baseAssignValue;
729
458
 
730
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheGet.js
731
- function listCacheGet(key) {
732
- var data = this.__data__, index = assocIndexOf_default(data, key);
733
- return index < 0 ? void 0 : data[index][1];
459
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_assignMergeValue.js
460
+ function assignMergeValue(object, key, value) {
461
+ if (value !== void 0 && !eq_default(object[key], value) || value === void 0 && !(key in object)) {
462
+ baseAssignValue_default(object, key, value);
463
+ }
734
464
  }
735
- var listCacheGet_default = listCacheGet;
465
+ var assignMergeValue_default = assignMergeValue;
736
466
 
737
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheHas.js
738
- function listCacheHas(key) {
739
- return assocIndexOf_default(this.__data__, key) > -1;
467
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_createBaseFor.js
468
+ function createBaseFor(fromRight) {
469
+ return function(object, iteratee, keysFunc) {
470
+ var index = -1, iterable = Object(object), props = keysFunc(object), length = props.length;
471
+ while (length--) {
472
+ var key = props[fromRight ? length : ++index];
473
+ if (iteratee(iterable[key], key, iterable) === false) {
474
+ break;
475
+ }
476
+ }
477
+ return object;
478
+ };
740
479
  }
741
- var listCacheHas_default = listCacheHas;
480
+ var createBaseFor_default = createBaseFor;
742
481
 
743
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_listCacheSet.js
744
- function listCacheSet(key, value) {
745
- var data = this.__data__, index = assocIndexOf_default(data, key);
746
- if (index < 0) {
747
- ++this.size;
748
- data.push([key, value]);
749
- } else {
750
- data[index][1] = value;
482
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseFor.js
483
+ var baseFor = createBaseFor_default();
484
+ var baseFor_default = baseFor;
485
+
486
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneBuffer.js
487
+ var freeExports = typeof exports == "object" && exports && !exports.nodeType && exports;
488
+ var freeModule = freeExports && typeof module == "object" && module && !module.nodeType && module;
489
+ var moduleExports = freeModule && freeModule.exports === freeExports;
490
+ var Buffer = moduleExports ? root_default.Buffer : void 0;
491
+ var allocUnsafe = Buffer ? Buffer.allocUnsafe : void 0;
492
+ function cloneBuffer(buffer, isDeep) {
493
+ if (isDeep) {
494
+ return buffer.slice();
751
495
  }
752
- return this;
496
+ var length = buffer.length, result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
497
+ buffer.copy(result);
498
+ return result;
753
499
  }
754
- var listCacheSet_default = listCacheSet;
500
+ var cloneBuffer_default = cloneBuffer;
755
501
 
756
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_ListCache.js
757
- function ListCache(entries) {
758
- var index = -1, length = entries == null ? 0 : entries.length;
759
- this.clear();
502
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Uint8Array.js
503
+ var Uint8Array = root_default.Uint8Array;
504
+ var Uint8Array_default = Uint8Array;
505
+
506
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneArrayBuffer.js
507
+ function cloneArrayBuffer(arrayBuffer) {
508
+ var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
509
+ new Uint8Array_default(result).set(new Uint8Array_default(arrayBuffer));
510
+ return result;
511
+ }
512
+ var cloneArrayBuffer_default = cloneArrayBuffer;
513
+
514
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneTypedArray.js
515
+ function cloneTypedArray(typedArray, isDeep) {
516
+ var buffer = isDeep ? cloneArrayBuffer_default(typedArray.buffer) : typedArray.buffer;
517
+ return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);
518
+ }
519
+ var cloneTypedArray_default = cloneTypedArray;
520
+
521
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyArray.js
522
+ function copyArray(source, array) {
523
+ var index = -1, length = source.length;
524
+ array || (array = Array(length));
760
525
  while (++index < length) {
761
- var entry = entries[index];
762
- this.set(entry[0], entry[1]);
526
+ array[index] = source[index];
763
527
  }
528
+ return array;
764
529
  }
765
- ListCache.prototype.clear = listCacheClear_default;
766
- ListCache.prototype["delete"] = listCacheDelete_default;
767
- ListCache.prototype.get = listCacheGet_default;
768
- ListCache.prototype.has = listCacheHas_default;
769
- ListCache.prototype.set = listCacheSet_default;
770
- var ListCache_default = ListCache;
530
+ var copyArray_default = copyArray;
771
531
 
772
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Map.js
773
- var Map = getNative_default(root_default, "Map");
774
- var Map_default = Map;
532
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseCreate.js
533
+ var objectCreate = Object.create;
534
+ var baseCreate = function() {
535
+ function object() {
536
+ }
537
+ return function(proto) {
538
+ if (!isObject_default(proto)) {
539
+ return {};
540
+ }
541
+ if (objectCreate) {
542
+ return objectCreate(proto);
543
+ }
544
+ object.prototype = proto;
545
+ var result = new object();
546
+ object.prototype = void 0;
547
+ return result;
548
+ };
549
+ }();
550
+ var baseCreate_default = baseCreate;
775
551
 
776
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheClear.js
777
- function mapCacheClear() {
778
- this.size = 0;
779
- this.__data__ = {
780
- "hash": new Hash_default(),
781
- "map": new (Map_default || ListCache_default)(),
782
- "string": new Hash_default()
552
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_overArg.js
553
+ function overArg(func, transform) {
554
+ return function(arg) {
555
+ return func(transform(arg));
783
556
  };
784
557
  }
785
- var mapCacheClear_default = mapCacheClear;
558
+ var overArg_default = overArg;
559
+
560
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getPrototype.js
561
+ var getPrototype = overArg_default(Object.getPrototypeOf, Object);
562
+ var getPrototype_default = getPrototype;
563
+
564
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isPrototype.js
565
+ var objectProto6 = Object.prototype;
566
+ function isPrototype(value) {
567
+ var Ctor = value && value.constructor, proto = typeof Ctor == "function" && Ctor.prototype || objectProto6;
568
+ return value === proto;
569
+ }
570
+ var isPrototype_default = isPrototype;
786
571
 
787
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isKeyable.js
788
- function isKeyable(value) {
789
- var type = typeof value;
790
- return type == "string" || type == "number" || type == "symbol" || type == "boolean" ? value !== "__proto__" : value === null;
572
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_initCloneObject.js
573
+ function initCloneObject(object) {
574
+ return typeof object.constructor == "function" && !isPrototype_default(object) ? baseCreate_default(getPrototype_default(object)) : {};
791
575
  }
792
- var isKeyable_default = isKeyable;
576
+ var initCloneObject_default = initCloneObject;
793
577
 
794
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getMapData.js
795
- function getMapData(map, key) {
796
- var data = map.__data__;
797
- return isKeyable_default(key) ? data[typeof key == "string" ? "string" : "hash"] : data.map;
578
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObjectLike.js
579
+ function isObjectLike(value) {
580
+ return value != null && typeof value == "object";
798
581
  }
799
- var getMapData_default = getMapData;
582
+ var isObjectLike_default = isObjectLike;
800
583
 
801
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheDelete.js
802
- function mapCacheDelete(key) {
803
- var result = getMapData_default(this, key)["delete"](key);
804
- this.size -= result ? 1 : 0;
805
- return result;
584
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseIsArguments.js
585
+ var argsTag = "[object Arguments]";
586
+ function baseIsArguments(value) {
587
+ return isObjectLike_default(value) && baseGetTag_default(value) == argsTag;
806
588
  }
807
- var mapCacheDelete_default = mapCacheDelete;
589
+ var baseIsArguments_default = baseIsArguments;
808
590
 
809
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheGet.js
810
- function mapCacheGet(key) {
811
- return getMapData_default(this, key).get(key);
591
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArguments.js
592
+ var objectProto7 = Object.prototype;
593
+ var hasOwnProperty5 = objectProto7.hasOwnProperty;
594
+ var propertyIsEnumerable = objectProto7.propertyIsEnumerable;
595
+ var isArguments = baseIsArguments_default(function() {
596
+ return arguments;
597
+ }()) ? baseIsArguments_default : function(value) {
598
+ return isObjectLike_default(value) && hasOwnProperty5.call(value, "callee") && !propertyIsEnumerable.call(value, "callee");
599
+ };
600
+ var isArguments_default = isArguments;
601
+
602
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArray.js
603
+ var isArray = Array.isArray;
604
+ var isArray_default = isArray;
605
+
606
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isLength.js
607
+ var MAX_SAFE_INTEGER = 9007199254740991;
608
+ function isLength(value) {
609
+ return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
812
610
  }
813
- var mapCacheGet_default = mapCacheGet;
611
+ var isLength_default = isLength;
814
612
 
815
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheHas.js
816
- function mapCacheHas(key) {
817
- return getMapData_default(this, key).has(key);
613
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArrayLike.js
614
+ function isArrayLike(value) {
615
+ return value != null && isLength_default(value.length) && !isFunction_default(value);
818
616
  }
819
- var mapCacheHas_default = mapCacheHas;
617
+ var isArrayLike_default = isArrayLike;
820
618
 
821
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_mapCacheSet.js
822
- function mapCacheSet(key, value) {
823
- var data = getMapData_default(this, key), size = data.size;
824
- data.set(key, value);
825
- this.size += data.size == size ? 0 : 1;
826
- return this;
619
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArrayLikeObject.js
620
+ function isArrayLikeObject(value) {
621
+ return isObjectLike_default(value) && isArrayLike_default(value);
827
622
  }
828
- var mapCacheSet_default = mapCacheSet;
623
+ var isArrayLikeObject_default = isArrayLikeObject;
829
624
 
830
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_MapCache.js
831
- function MapCache(entries) {
832
- var index = -1, length = entries == null ? 0 : entries.length;
833
- this.clear();
834
- while (++index < length) {
835
- var entry = entries[index];
836
- this.set(entry[0], entry[1]);
837
- }
625
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/stubFalse.js
626
+ function stubFalse() {
627
+ return false;
838
628
  }
839
- MapCache.prototype.clear = mapCacheClear_default;
840
- MapCache.prototype["delete"] = mapCacheDelete_default;
841
- MapCache.prototype.get = mapCacheGet_default;
842
- MapCache.prototype.has = mapCacheHas_default;
843
- MapCache.prototype.set = mapCacheSet_default;
844
- var MapCache_default = MapCache;
629
+ var stubFalse_default = stubFalse;
845
630
 
846
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getPrototype.js
847
- var getPrototype = overArg_default(Object.getPrototypeOf, Object);
848
- var getPrototype_default = getPrototype;
631
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isBuffer.js
632
+ var freeExports2 = typeof exports == "object" && exports && !exports.nodeType && exports;
633
+ var freeModule2 = freeExports2 && typeof module == "object" && module && !module.nodeType && module;
634
+ var moduleExports2 = freeModule2 && freeModule2.exports === freeExports2;
635
+ var Buffer2 = moduleExports2 ? root_default.Buffer : void 0;
636
+ var nativeIsBuffer = Buffer2 ? Buffer2.isBuffer : void 0;
637
+ var isBuffer = nativeIsBuffer || stubFalse_default;
638
+ var isBuffer_default = isBuffer;
849
639
 
850
640
  // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isPlainObject.js
851
- var objectTag2 = "[object Object]";
641
+ var objectTag = "[object Object]";
852
642
  var funcProto3 = Function.prototype;
853
- var objectProto11 = Object.prototype;
643
+ var objectProto8 = Object.prototype;
854
644
  var funcToString3 = funcProto3.toString;
855
- var hasOwnProperty9 = objectProto11.hasOwnProperty;
645
+ var hasOwnProperty6 = objectProto8.hasOwnProperty;
856
646
  var objectCtorString = funcToString3.call(Object);
857
647
  function isPlainObject(value) {
858
- if (!isObjectLike_default(value) || baseGetTag_default(value) != objectTag2) {
648
+ if (!isObjectLike_default(value) || baseGetTag_default(value) != objectTag) {
859
649
  return false;
860
650
  }
861
651
  var proto = getPrototype_default(value);
862
652
  if (proto === null) {
863
653
  return true;
864
654
  }
865
- var Ctor = hasOwnProperty9.call(proto, "constructor") && proto.constructor;
655
+ var Ctor = hasOwnProperty6.call(proto, "constructor") && proto.constructor;
866
656
  return typeof Ctor == "function" && Ctor instanceof Ctor && funcToString3.call(Ctor) == objectCtorString;
867
657
  }
868
658
  var isPlainObject_default = isPlainObject;
869
659
 
870
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/castArray.js
871
- function castArray() {
872
- if (!arguments.length) {
873
- return [];
874
- }
875
- var value = arguments[0];
876
- return isArray_default(value) ? value : [value];
877
- }
878
- var castArray_default = castArray;
879
-
880
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackClear.js
881
- function stackClear() {
882
- this.__data__ = new ListCache_default();
883
- this.size = 0;
660
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseIsTypedArray.js
661
+ var argsTag2 = "[object Arguments]";
662
+ var arrayTag = "[object Array]";
663
+ var boolTag = "[object Boolean]";
664
+ var dateTag = "[object Date]";
665
+ var errorTag = "[object Error]";
666
+ var funcTag2 = "[object Function]";
667
+ var mapTag = "[object Map]";
668
+ var numberTag = "[object Number]";
669
+ var objectTag2 = "[object Object]";
670
+ var regexpTag = "[object RegExp]";
671
+ var setTag = "[object Set]";
672
+ var stringTag = "[object String]";
673
+ var weakMapTag = "[object WeakMap]";
674
+ var arrayBufferTag = "[object ArrayBuffer]";
675
+ var dataViewTag = "[object DataView]";
676
+ var float32Tag = "[object Float32Array]";
677
+ var float64Tag = "[object Float64Array]";
678
+ var int8Tag = "[object Int8Array]";
679
+ var int16Tag = "[object Int16Array]";
680
+ var int32Tag = "[object Int32Array]";
681
+ var uint8Tag = "[object Uint8Array]";
682
+ var uint8ClampedTag = "[object Uint8ClampedArray]";
683
+ var uint16Tag = "[object Uint16Array]";
684
+ var uint32Tag = "[object Uint32Array]";
685
+ var typedArrayTags = {};
686
+ typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true;
687
+ typedArrayTags[argsTag2] = typedArrayTags[arrayTag] = typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = typedArrayTags[errorTag] = typedArrayTags[funcTag2] = typedArrayTags[mapTag] = typedArrayTags[numberTag] = typedArrayTags[objectTag2] = typedArrayTags[regexpTag] = typedArrayTags[setTag] = typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false;
688
+ function baseIsTypedArray(value) {
689
+ return isObjectLike_default(value) && isLength_default(value.length) && !!typedArrayTags[baseGetTag_default(value)];
884
690
  }
885
- var stackClear_default = stackClear;
691
+ var baseIsTypedArray_default = baseIsTypedArray;
886
692
 
887
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackDelete.js
888
- function stackDelete(key) {
889
- var data = this.__data__, result = data["delete"](key);
890
- this.size = data.size;
891
- return result;
693
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseUnary.js
694
+ function baseUnary(func) {
695
+ return function(value) {
696
+ return func(value);
697
+ };
892
698
  }
893
- var stackDelete_default = stackDelete;
699
+ var baseUnary_default = baseUnary;
894
700
 
895
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackGet.js
896
- function stackGet(key) {
897
- return this.__data__.get(key);
898
- }
899
- var stackGet_default = stackGet;
701
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nodeUtil.js
702
+ var freeExports3 = typeof exports == "object" && exports && !exports.nodeType && exports;
703
+ var freeModule3 = freeExports3 && typeof module == "object" && module && !module.nodeType && module;
704
+ var moduleExports3 = freeModule3 && freeModule3.exports === freeExports3;
705
+ var freeProcess = moduleExports3 && freeGlobal_default.process;
706
+ var nodeUtil = function() {
707
+ try {
708
+ var types = freeModule3 && freeModule3.require && freeModule3.require("util").types;
709
+ if (types) {
710
+ return types;
711
+ }
712
+ return freeProcess && freeProcess.binding && freeProcess.binding("util");
713
+ } catch (e) {
714
+ }
715
+ }();
716
+ var nodeUtil_default = nodeUtil;
900
717
 
901
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackHas.js
902
- function stackHas(key) {
903
- return this.__data__.has(key);
904
- }
905
- var stackHas_default = stackHas;
718
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isTypedArray.js
719
+ var nodeIsTypedArray = nodeUtil_default && nodeUtil_default.isTypedArray;
720
+ var isTypedArray = nodeIsTypedArray ? baseUnary_default(nodeIsTypedArray) : baseIsTypedArray_default;
721
+ var isTypedArray_default = isTypedArray;
906
722
 
907
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_stackSet.js
908
- var LARGE_ARRAY_SIZE = 200;
909
- function stackSet(key, value) {
910
- var data = this.__data__;
911
- if (data instanceof ListCache_default) {
912
- var pairs = data.__data__;
913
- if (!Map_default || pairs.length < LARGE_ARRAY_SIZE - 1) {
914
- pairs.push([key, value]);
915
- this.size = ++data.size;
916
- return this;
917
- }
918
- data = this.__data__ = new MapCache_default(pairs);
723
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_safeGet.js
724
+ function safeGet(object, key) {
725
+ if (key === "constructor" && typeof object[key] === "function") {
726
+ return;
919
727
  }
920
- data.set(key, value);
921
- this.size = data.size;
922
- return this;
728
+ if (key == "__proto__") {
729
+ return;
730
+ }
731
+ return object[key];
923
732
  }
924
- var stackSet_default = stackSet;
733
+ var safeGet_default = safeGet;
925
734
 
926
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Stack.js
927
- function Stack(entries) {
928
- var data = this.__data__ = new ListCache_default(entries);
929
- this.size = data.size;
735
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_assignValue.js
736
+ var objectProto9 = Object.prototype;
737
+ var hasOwnProperty7 = objectProto9.hasOwnProperty;
738
+ function assignValue(object, key, value) {
739
+ var objValue = object[key];
740
+ if (!(hasOwnProperty7.call(object, key) && eq_default(objValue, value)) || value === void 0 && !(key in object)) {
741
+ baseAssignValue_default(object, key, value);
742
+ }
930
743
  }
931
- Stack.prototype.clear = stackClear_default;
932
- Stack.prototype["delete"] = stackDelete_default;
933
- Stack.prototype.get = stackGet_default;
934
- Stack.prototype.has = stackHas_default;
935
- Stack.prototype.set = stackSet_default;
936
- var Stack_default = Stack;
744
+ var assignValue_default = assignValue;
937
745
 
938
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneBuffer.js
939
- var freeExports3 = typeof exports == "object" && exports && !exports.nodeType && exports;
940
- var freeModule3 = freeExports3 && typeof module == "object" && module && !module.nodeType && module;
941
- var moduleExports3 = freeModule3 && freeModule3.exports === freeExports3;
942
- var Buffer3 = moduleExports3 ? root_default.Buffer : void 0;
943
- var allocUnsafe = Buffer3 ? Buffer3.allocUnsafe : void 0;
944
- function cloneBuffer(buffer, isDeep) {
945
- if (isDeep) {
946
- return buffer.slice();
746
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyObject.js
747
+ function copyObject(source, props, object, customizer) {
748
+ var isNew = !object;
749
+ object || (object = {});
750
+ var index = -1, length = props.length;
751
+ while (++index < length) {
752
+ var key = props[index];
753
+ var newValue = customizer ? customizer(object[key], source[key], key, object, source) : void 0;
754
+ if (newValue === void 0) {
755
+ newValue = source[key];
756
+ }
757
+ if (isNew) {
758
+ baseAssignValue_default(object, key, newValue);
759
+ } else {
760
+ assignValue_default(object, key, newValue);
761
+ }
947
762
  }
948
- var length = buffer.length, result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
949
- buffer.copy(result);
950
- return result;
763
+ return object;
951
764
  }
952
- var cloneBuffer_default = cloneBuffer;
953
-
954
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Uint8Array.js
955
- var Uint8Array2 = root_default.Uint8Array;
956
- var Uint8Array_default = Uint8Array2;
765
+ var copyObject_default = copyObject;
957
766
 
958
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneArrayBuffer.js
959
- function cloneArrayBuffer(arrayBuffer) {
960
- var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
961
- new Uint8Array_default(result).set(new Uint8Array_default(arrayBuffer));
767
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseTimes.js
768
+ function baseTimes(n, iteratee) {
769
+ var index = -1, result = Array(n);
770
+ while (++index < n) {
771
+ result[index] = iteratee(index);
772
+ }
962
773
  return result;
963
774
  }
964
- var cloneArrayBuffer_default = cloneArrayBuffer;
965
-
966
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_cloneTypedArray.js
967
- function cloneTypedArray(typedArray, isDeep) {
968
- var buffer = isDeep ? cloneArrayBuffer_default(typedArray.buffer) : typedArray.buffer;
969
- return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);
970
- }
971
- var cloneTypedArray_default = cloneTypedArray;
775
+ var baseTimes_default = baseTimes;
972
776
 
973
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_initCloneObject.js
974
- function initCloneObject(object) {
975
- return typeof object.constructor == "function" && !isPrototype_default(object) ? baseCreate_default(getPrototype_default(object)) : {};
777
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isIndex.js
778
+ var MAX_SAFE_INTEGER2 = 9007199254740991;
779
+ var reIsUint = /^(?:0|[1-9]\d*)$/;
780
+ function isIndex(value, length) {
781
+ var type = typeof value;
782
+ length = length == null ? MAX_SAFE_INTEGER2 : length;
783
+ return !!length && (type == "number" || type != "symbol" && reIsUint.test(value)) && value > -1 && value % 1 == 0 && value < length;
976
784
  }
977
- var initCloneObject_default = initCloneObject;
785
+ var isIndex_default = isIndex;
978
786
 
979
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_createBaseFor.js
980
- function createBaseFor(fromRight) {
981
- return function(object, iteratee, keysFunc) {
982
- var index = -1, iterable = Object(object), props = keysFunc(object), length = props.length;
983
- while (length--) {
984
- var key = props[fromRight ? length : ++index];
985
- if (iteratee(iterable[key], key, iterable) === false) {
986
- break;
987
- }
787
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayLikeKeys.js
788
+ var objectProto10 = Object.prototype;
789
+ var hasOwnProperty8 = objectProto10.hasOwnProperty;
790
+ function arrayLikeKeys(value, inherited) {
791
+ var isArr = isArray_default(value), isArg = !isArr && isArguments_default(value), isBuff = !isArr && !isArg && isBuffer_default(value), isType = !isArr && !isArg && !isBuff && isTypedArray_default(value), skipIndexes = isArr || isArg || isBuff || isType, result = skipIndexes ? baseTimes_default(value.length, String) : [], length = result.length;
792
+ for (var key in value) {
793
+ if ((inherited || hasOwnProperty8.call(value, key)) && !(skipIndexes && // Safari 9 has enumerable `arguments.length` in strict mode.
794
+ (key == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
795
+ isBuff && (key == "offset" || key == "parent") || // PhantomJS 2 has enumerable non-index properties on typed arrays.
796
+ isType && (key == "buffer" || key == "byteLength" || key == "byteOffset") || // Skip index properties.
797
+ isIndex_default(key, length)))) {
798
+ result.push(key);
988
799
  }
989
- return object;
990
- };
991
- }
992
- var createBaseFor_default = createBaseFor;
993
-
994
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseFor.js
995
- var baseFor = createBaseFor_default();
996
- var baseFor_default = baseFor;
997
-
998
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_assignMergeValue.js
999
- function assignMergeValue(object, key, value) {
1000
- if (value !== void 0 && !eq_default(object[key], value) || value === void 0 && !(key in object)) {
1001
- baseAssignValue_default(object, key, value);
1002
800
  }
801
+ return result;
1003
802
  }
1004
- var assignMergeValue_default = assignMergeValue;
803
+ var arrayLikeKeys_default = arrayLikeKeys;
1005
804
 
1006
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isArrayLikeObject.js
1007
- function isArrayLikeObject(value) {
1008
- return isObjectLike_default(value) && isArrayLike_default(value);
805
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_nativeKeysIn.js
806
+ function nativeKeysIn(object) {
807
+ var result = [];
808
+ if (object != null) {
809
+ for (var key in Object(object)) {
810
+ result.push(key);
811
+ }
812
+ }
813
+ return result;
1009
814
  }
1010
- var isArrayLikeObject_default = isArrayLikeObject;
815
+ var nativeKeysIn_default = nativeKeysIn;
1011
816
 
1012
- // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_safeGet.js
1013
- function safeGet(object, key) {
1014
- if (key === "constructor" && typeof object[key] === "function") {
1015
- return;
817
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseKeysIn.js
818
+ var objectProto11 = Object.prototype;
819
+ var hasOwnProperty9 = objectProto11.hasOwnProperty;
820
+ function baseKeysIn(object) {
821
+ if (!isObject_default(object)) {
822
+ return nativeKeysIn_default(object);
1016
823
  }
1017
- if (key == "__proto__") {
1018
- return;
824
+ var isProto = isPrototype_default(object), result = [];
825
+ for (var key in object) {
826
+ if (!(key == "constructor" && (isProto || !hasOwnProperty9.call(object, key)))) {
827
+ result.push(key);
828
+ }
1019
829
  }
1020
- return object[key];
830
+ return result;
1021
831
  }
1022
- var safeGet_default = safeGet;
832
+ var baseKeysIn_default = baseKeysIn;
833
+
834
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/keysIn.js
835
+ function keysIn(object) {
836
+ return isArrayLike_default(object) ? arrayLikeKeys_default(object, true) : baseKeysIn_default(object);
837
+ }
838
+ var keysIn_default = keysIn;
1023
839
 
1024
840
  // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/toPlainObject.js
1025
841
  function toPlainObject(value) {
@@ -1093,6 +909,132 @@ function baseMerge(object, source, srcIndex, customizer, stack) {
1093
909
  }
1094
910
  var baseMerge_default = baseMerge;
1095
911
 
912
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/identity.js
913
+ function identity(value) {
914
+ return value;
915
+ }
916
+ var identity_default = identity;
917
+
918
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_apply.js
919
+ function apply(func, thisArg, args) {
920
+ switch (args.length) {
921
+ case 0:
922
+ return func.call(thisArg);
923
+ case 1:
924
+ return func.call(thisArg, args[0]);
925
+ case 2:
926
+ return func.call(thisArg, args[0], args[1]);
927
+ case 3:
928
+ return func.call(thisArg, args[0], args[1], args[2]);
929
+ }
930
+ return func.apply(thisArg, args);
931
+ }
932
+ var apply_default = apply;
933
+
934
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_overRest.js
935
+ var nativeMax = Math.max;
936
+ function overRest(func, start, transform) {
937
+ start = nativeMax(start === void 0 ? func.length - 1 : start, 0);
938
+ return function() {
939
+ var args = arguments, index = -1, length = nativeMax(args.length - start, 0), array = Array(length);
940
+ while (++index < length) {
941
+ array[index] = args[start + index];
942
+ }
943
+ index = -1;
944
+ var otherArgs = Array(start + 1);
945
+ while (++index < start) {
946
+ otherArgs[index] = args[index];
947
+ }
948
+ otherArgs[start] = transform(array);
949
+ return apply_default(func, this, otherArgs);
950
+ };
951
+ }
952
+ var overRest_default = overRest;
953
+
954
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/constant.js
955
+ function constant(value) {
956
+ return function() {
957
+ return value;
958
+ };
959
+ }
960
+ var constant_default = constant;
961
+
962
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseSetToString.js
963
+ var baseSetToString = !defineProperty_default ? identity_default : function(func, string) {
964
+ return defineProperty_default(func, "toString", {
965
+ "configurable": true,
966
+ "enumerable": false,
967
+ "value": constant_default(string),
968
+ "writable": true
969
+ });
970
+ };
971
+ var baseSetToString_default = baseSetToString;
972
+
973
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_shortOut.js
974
+ var HOT_COUNT = 800;
975
+ var HOT_SPAN = 16;
976
+ var nativeNow = Date.now;
977
+ function shortOut(func) {
978
+ var count = 0, lastCalled = 0;
979
+ return function() {
980
+ var stamp = nativeNow(), remaining = HOT_SPAN - (stamp - lastCalled);
981
+ lastCalled = stamp;
982
+ if (remaining > 0) {
983
+ if (++count >= HOT_COUNT) {
984
+ return arguments[0];
985
+ }
986
+ } else {
987
+ count = 0;
988
+ }
989
+ return func.apply(void 0, arguments);
990
+ };
991
+ }
992
+ var shortOut_default = shortOut;
993
+
994
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_setToString.js
995
+ var setToString = shortOut_default(baseSetToString_default);
996
+ var setToString_default = setToString;
997
+
998
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseRest.js
999
+ function baseRest(func, start) {
1000
+ return setToString_default(overRest_default(func, start, identity_default), func + "");
1001
+ }
1002
+ var baseRest_default = baseRest;
1003
+
1004
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_isIterateeCall.js
1005
+ function isIterateeCall(value, index, object) {
1006
+ if (!isObject_default(object)) {
1007
+ return false;
1008
+ }
1009
+ var type = typeof index;
1010
+ if (type == "number" ? isArrayLike_default(object) && isIndex_default(index, object.length) : type == "string" && index in object) {
1011
+ return eq_default(object[index], value);
1012
+ }
1013
+ return false;
1014
+ }
1015
+ var isIterateeCall_default = isIterateeCall;
1016
+
1017
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_createAssigner.js
1018
+ function createAssigner(assigner) {
1019
+ return baseRest_default(function(object, sources) {
1020
+ var index = -1, length = sources.length, customizer = length > 1 ? sources[length - 1] : void 0, guard = length > 2 ? sources[2] : void 0;
1021
+ customizer = assigner.length > 3 && typeof customizer == "function" ? (length--, customizer) : void 0;
1022
+ if (guard && isIterateeCall_default(sources[0], sources[1], guard)) {
1023
+ customizer = length < 3 ? void 0 : customizer;
1024
+ length = 1;
1025
+ }
1026
+ object = Object(object);
1027
+ while (++index < length) {
1028
+ var source = sources[index];
1029
+ if (source) {
1030
+ assigner(object, source, index, customizer);
1031
+ }
1032
+ }
1033
+ return object;
1034
+ });
1035
+ }
1036
+ var createAssigner_default = createAssigner;
1037
+
1096
1038
  // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/mergeWith.js
1097
1039
  var mergeWith = createAssigner_default(function(object, source, srcIndex, customizer) {
1098
1040
  baseMerge_default(object, source, srcIndex, customizer);
@@ -1105,13 +1047,24 @@ function isUndefined(value) {
1105
1047
  }
1106
1048
  var isUndefined_default = isUndefined;
1107
1049
 
1050
+ // ../../node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/castArray.js
1051
+ function castArray() {
1052
+ if (!arguments.length) {
1053
+ return [];
1054
+ }
1055
+ var value = arguments[0];
1056
+ return isArray_default(value) ? value : [
1057
+ value
1058
+ ];
1059
+ }
1060
+ var castArray_default = castArray;
1061
+
1108
1062
  // src/utils/index.ts
1109
1063
  var QUERY_REGEXP = /\?.*$/s;
1110
1064
  var HASH_REGEXP = /#.*$/s;
1111
1065
  var MDX_REGEXP = /\.mdx?$/;
1112
- var APPEARANCE_KEY = "rspress-theme-appearance";
1066
+ var APPEARANCE_KEY = "modern-theme-appearance";
1113
1067
  var SEARCH_INDEX_NAME = "search_index";
1114
- var RSPRESS_TEMP_DIR = ".rspress";
1115
1068
  var isSCM = () => Boolean(process.env.BUILD_VERSION);
1116
1069
  var isProduction = () => process.env.NODE_ENV === "production";
1117
1070
  var isDebugMode = () => Boolean(process.env.DOC_DEBUG);
@@ -1181,7 +1134,9 @@ function replaceLang(rawUrl, targetLang, defaultLang, langs, base = "") {
1181
1134
  return withBase(result, base);
1182
1135
  }
1183
1136
  var omit = (obj, keys) => {
1184
- const ret = { ...obj };
1137
+ const ret = {
1138
+ ...obj
1139
+ };
1185
1140
  for (const key of keys) {
1186
1141
  delete ret[key];
1187
1142
  }
@@ -1233,22 +1188,26 @@ function withoutHash(url) {
1233
1188
  return url.split("#")[0];
1234
1189
  }
1235
1190
  var mergeDocConfig = (...configs) => mergeWith_default({}, ...configs, (target, source) => {
1236
- const pair = [target, source];
1191
+ const pair = [
1192
+ target,
1193
+ source
1194
+ ];
1237
1195
  if (pair.some(isUndefined_default)) {
1238
1196
  return void 0;
1239
1197
  }
1240
1198
  if (pair.some(isArray_default)) {
1241
- return [...castArray_default(target), ...castArray_default(source)];
1199
+ return [
1200
+ ...castArray_default(target),
1201
+ ...castArray_default(source)
1202
+ ];
1242
1203
  }
1243
1204
  return void 0;
1244
1205
  });
1245
- // Annotate the CommonJS export names for ESM import in node:
1246
- 0 && (module.exports = {
1206
+ export {
1247
1207
  APPEARANCE_KEY,
1248
1208
  HASH_REGEXP,
1249
1209
  MDX_REGEXP,
1250
1210
  QUERY_REGEXP,
1251
- RSPRESS_TEMP_DIR,
1252
1211
  SEARCH_INDEX_NAME,
1253
1212
  addLeadingSlash,
1254
1213
  cleanUrl,
@@ -1272,17 +1231,4 @@ var mergeDocConfig = (...configs) => mergeWith_default({}, ...configs, (target,
1272
1231
  withoutBase,
1273
1232
  withoutHash,
1274
1233
  withoutLang
1275
- });
1276
- /*! Bundled license information:
1277
-
1278
- lodash-es/lodash.js:
1279
- (**
1280
- * @license
1281
- * Lodash (Custom Build) <https://lodash.com/>
1282
- * Build: `lodash modularize exports="es" -o ./`
1283
- * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
1284
- * Released under MIT license <https://lodash.com/license>
1285
- * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
1286
- * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
1287
- *)
1288
- */
1234
+ };