@bedelightful/es6-template-strings 0.0.5

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.
Files changed (50) hide show
  1. package/LICENSE +8 -0
  2. package/README.md +60 -0
  3. package/dist/es/compile.js +105 -0
  4. package/dist/es/compile.js.map +1 -0
  5. package/dist/es/index.d.ts +22 -0
  6. package/dist/es/index.js +9 -0
  7. package/dist/es/index.js.map +1 -0
  8. package/dist/es/passthru-array.js +18 -0
  9. package/dist/es/passthru-array.js.map +1 -0
  10. package/dist/es/passthru.js +13 -0
  11. package/dist/es/passthru.js.map +1 -0
  12. package/dist/es/resolve-to-array.js +12 -0
  13. package/dist/es/resolve-to-array.js.map +1 -0
  14. package/dist/es/resolve-to-string.js +12 -0
  15. package/dist/es/resolve-to-string.js.map +1 -0
  16. package/dist/es/resolve.js +62 -0
  17. package/dist/es/resolve.js.map +1 -0
  18. package/dist/es/to-array.js +16 -0
  19. package/dist/es/to-array.js.map +1 -0
  20. package/dist/es/to-string.js +16 -0
  21. package/dist/es/to-string.js.map +1 -0
  22. package/dist/es/types.js +1 -0
  23. package/dist/es/types.js.map +1 -0
  24. package/dist/index.d.ts +22 -0
  25. package/dist/index.js +3123 -0
  26. package/dist/index.js.map +1 -0
  27. package/dist/index.min.js +20 -0
  28. package/dist/index.min.js.map +1 -0
  29. package/dist/lib/compile.js +134 -0
  30. package/dist/lib/compile.js.map +1 -0
  31. package/dist/lib/index.d.cts +22 -0
  32. package/dist/lib/index.js +44 -0
  33. package/dist/lib/index.js.map +1 -0
  34. package/dist/lib/passthru-array.js +37 -0
  35. package/dist/lib/passthru-array.js.map +1 -0
  36. package/dist/lib/passthru.js +32 -0
  37. package/dist/lib/passthru.js.map +1 -0
  38. package/dist/lib/resolve-to-array.js +41 -0
  39. package/dist/lib/resolve-to-array.js.map +1 -0
  40. package/dist/lib/resolve-to-string.js +41 -0
  41. package/dist/lib/resolve-to-string.js.map +1 -0
  42. package/dist/lib/resolve.js +91 -0
  43. package/dist/lib/resolve.js.map +1 -0
  44. package/dist/lib/to-array.js +45 -0
  45. package/dist/lib/to-array.js.map +1 -0
  46. package/dist/lib/to-string.js +45 -0
  47. package/dist/lib/to-string.js.map +1 -0
  48. package/dist/lib/types.js +17 -0
  49. package/dist/lib/types.js.map +1 -0
  50. package/package.json +66 -0
package/dist/index.js ADDED
@@ -0,0 +1,3123 @@
1
+ "use strict";
2
+ (() => {
3
+ var __create = Object.create;
4
+ var __defProp = Object.defineProperty;
5
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
+ var __getOwnPropNames = Object.getOwnPropertyNames;
7
+ var __getProtoOf = Object.getPrototypeOf;
8
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
9
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
10
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
11
+ var __commonJS = (cb, mod) => function __require() {
12
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
13
+ };
14
+ var __copyProps = (to, from, except, desc) => {
15
+ if (from && typeof from === "object" || typeof from === "function") {
16
+ for (let key of __getOwnPropNames(from))
17
+ if (!__hasOwnProp.call(to, key) && key !== except)
18
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
19
+ }
20
+ return to;
21
+ };
22
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
23
+ // If the importer is in node compatibility mode or this is not an ESM
24
+ // file that has been converted to a CommonJS file using a Babel-
25
+ // compatible transform (i.e. "__esModule" has not been set), then set
26
+ // "default" to the CommonJS "module.exports" for node compatibility.
27
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
28
+ mod
29
+ ));
30
+ var __publicField = (obj, key, value) => {
31
+ __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
32
+ return value;
33
+ };
34
+
35
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/array/from/is-implemented.js
36
+ var require_is_implemented = __commonJS({
37
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/array/from/is-implemented.js"(exports2, module2) {
38
+ "use strict";
39
+ module2.exports = function() {
40
+ var from = Array.from, arr, result;
41
+ if (typeof from !== "function")
42
+ return false;
43
+ arr = [
44
+ "raz",
45
+ "dwa"
46
+ ];
47
+ result = from(arr);
48
+ return Boolean(result && result !== arr && result[1] === "dwa");
49
+ };
50
+ }
51
+ });
52
+
53
+ // node_modules/.pnpm/ext@1.7.0/node_modules/ext/global-this/is-implemented.js
54
+ var require_is_implemented2 = __commonJS({
55
+ "node_modules/.pnpm/ext@1.7.0/node_modules/ext/global-this/is-implemented.js"(exports2, module2) {
56
+ "use strict";
57
+ module2.exports = function() {
58
+ if (typeof globalThis !== "object")
59
+ return false;
60
+ if (!globalThis)
61
+ return false;
62
+ return globalThis.Array === Array;
63
+ };
64
+ }
65
+ });
66
+
67
+ // node_modules/.pnpm/ext@1.7.0/node_modules/ext/global-this/implementation.js
68
+ var require_implementation = __commonJS({
69
+ "node_modules/.pnpm/ext@1.7.0/node_modules/ext/global-this/implementation.js"(exports2, module2) {
70
+ "use strict";
71
+ var naiveFallback = /* @__PURE__ */ __name(function() {
72
+ if (typeof self === "object" && self)
73
+ return self;
74
+ if (typeof window === "object" && window)
75
+ return window;
76
+ throw new Error("Unable to resolve global `this`");
77
+ }, "naiveFallback");
78
+ module2.exports = function() {
79
+ if (this)
80
+ return this;
81
+ try {
82
+ Object.defineProperty(Object.prototype, "__global__", {
83
+ get: function() {
84
+ return this;
85
+ },
86
+ configurable: true
87
+ });
88
+ } catch (error) {
89
+ return naiveFallback();
90
+ }
91
+ try {
92
+ if (!__global__)
93
+ return naiveFallback();
94
+ return __global__;
95
+ } finally {
96
+ delete Object.prototype.__global__;
97
+ }
98
+ }();
99
+ }
100
+ });
101
+
102
+ // node_modules/.pnpm/ext@1.7.0/node_modules/ext/global-this/index.js
103
+ var require_global_this = __commonJS({
104
+ "node_modules/.pnpm/ext@1.7.0/node_modules/ext/global-this/index.js"(exports2, module2) {
105
+ "use strict";
106
+ module2.exports = require_is_implemented2()() ? globalThis : require_implementation();
107
+ }
108
+ });
109
+
110
+ // node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/is-implemented.js
111
+ var require_is_implemented3 = __commonJS({
112
+ "node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/is-implemented.js"(exports2, module2) {
113
+ "use strict";
114
+ var global2 = require_global_this();
115
+ var validTypes = {
116
+ object: true,
117
+ symbol: true
118
+ };
119
+ module2.exports = function() {
120
+ var Symbol3 = global2.Symbol;
121
+ var symbol;
122
+ if (typeof Symbol3 !== "function")
123
+ return false;
124
+ symbol = Symbol3("test symbol");
125
+ try {
126
+ String(symbol);
127
+ } catch (e) {
128
+ return false;
129
+ }
130
+ if (!validTypes[typeof Symbol3.iterator])
131
+ return false;
132
+ if (!validTypes[typeof Symbol3.toPrimitive])
133
+ return false;
134
+ if (!validTypes[typeof Symbol3.toStringTag])
135
+ return false;
136
+ return true;
137
+ };
138
+ }
139
+ });
140
+
141
+ // node_modules/.pnpm/type@2.7.3/node_modules/type/value/is.js
142
+ var require_is = __commonJS({
143
+ "node_modules/.pnpm/type@2.7.3/node_modules/type/value/is.js"(exports2, module2) {
144
+ "use strict";
145
+ var _undefined = void 0;
146
+ module2.exports = function(value) {
147
+ return value !== _undefined && value !== null;
148
+ };
149
+ }
150
+ });
151
+
152
+ // node_modules/.pnpm/type@2.7.3/node_modules/type/object/is.js
153
+ var require_is2 = __commonJS({
154
+ "node_modules/.pnpm/type@2.7.3/node_modules/type/object/is.js"(exports2, module2) {
155
+ "use strict";
156
+ var isValue2 = require_is();
157
+ var possibleTypes = {
158
+ "object": true,
159
+ "function": true,
160
+ "undefined": true
161
+ };
162
+ module2.exports = function(value) {
163
+ if (!isValue2(value))
164
+ return false;
165
+ return hasOwnProperty.call(possibleTypes, typeof value);
166
+ };
167
+ }
168
+ });
169
+
170
+ // node_modules/.pnpm/type@2.7.3/node_modules/type/prototype/is.js
171
+ var require_is3 = __commonJS({
172
+ "node_modules/.pnpm/type@2.7.3/node_modules/type/prototype/is.js"(exports2, module2) {
173
+ "use strict";
174
+ var isObject2 = require_is2();
175
+ module2.exports = function(value) {
176
+ if (!isObject2(value))
177
+ return false;
178
+ try {
179
+ if (!value.constructor)
180
+ return false;
181
+ return value.constructor.prototype === value;
182
+ } catch (error) {
183
+ return false;
184
+ }
185
+ };
186
+ }
187
+ });
188
+
189
+ // node_modules/.pnpm/type@2.7.3/node_modules/type/function/is.js
190
+ var require_is4 = __commonJS({
191
+ "node_modules/.pnpm/type@2.7.3/node_modules/type/function/is.js"(exports2, module2) {
192
+ "use strict";
193
+ var isPrototype2 = require_is3();
194
+ module2.exports = function(value) {
195
+ if (typeof value !== "function")
196
+ return false;
197
+ if (!hasOwnProperty.call(value, "length"))
198
+ return false;
199
+ try {
200
+ if (typeof value.length !== "number")
201
+ return false;
202
+ if (typeof value.call !== "function")
203
+ return false;
204
+ if (typeof value.apply !== "function")
205
+ return false;
206
+ } catch (error) {
207
+ return false;
208
+ }
209
+ return !isPrototype2(value);
210
+ };
211
+ }
212
+ });
213
+
214
+ // node_modules/.pnpm/type@2.7.3/node_modules/type/plain-function/is.js
215
+ var require_is5 = __commonJS({
216
+ "node_modules/.pnpm/type@2.7.3/node_modules/type/plain-function/is.js"(exports2, module2) {
217
+ "use strict";
218
+ var isFunction2 = require_is4();
219
+ var classRe = /^\s*class[\s{/}]/;
220
+ var functionToString = Function.prototype.toString;
221
+ module2.exports = function(value) {
222
+ if (!isFunction2(value))
223
+ return false;
224
+ if (classRe.test(functionToString.call(value)))
225
+ return false;
226
+ return true;
227
+ };
228
+ }
229
+ });
230
+
231
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/assign/is-implemented.js
232
+ var require_is_implemented4 = __commonJS({
233
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/assign/is-implemented.js"(exports2, module2) {
234
+ "use strict";
235
+ module2.exports = function() {
236
+ var assign = Object.assign, obj;
237
+ if (typeof assign !== "function")
238
+ return false;
239
+ obj = {
240
+ foo: "raz"
241
+ };
242
+ assign(obj, {
243
+ bar: "dwa"
244
+ }, {
245
+ trzy: "trzy"
246
+ });
247
+ return obj.foo + obj.bar + obj.trzy === "razdwatrzy";
248
+ };
249
+ }
250
+ });
251
+
252
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/keys/is-implemented.js
253
+ var require_is_implemented5 = __commonJS({
254
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/keys/is-implemented.js"(exports2, module2) {
255
+ "use strict";
256
+ module2.exports = function() {
257
+ try {
258
+ Object.keys("primitive");
259
+ return true;
260
+ } catch (e) {
261
+ return false;
262
+ }
263
+ };
264
+ }
265
+ });
266
+
267
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/function/noop.js
268
+ var require_noop = __commonJS({
269
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/function/noop.js"(exports2, module2) {
270
+ "use strict";
271
+ module2.exports = function() {
272
+ };
273
+ }
274
+ });
275
+
276
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/is-value.js
277
+ var require_is_value = __commonJS({
278
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/is-value.js"(exports2, module2) {
279
+ "use strict";
280
+ var _undefined = require_noop()();
281
+ module2.exports = function(val) {
282
+ return val !== _undefined && val !== null;
283
+ };
284
+ }
285
+ });
286
+
287
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/keys/shim.js
288
+ var require_shim = __commonJS({
289
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/keys/shim.js"(exports2, module2) {
290
+ "use strict";
291
+ var isValue2 = require_is_value();
292
+ var keys2 = Object.keys;
293
+ module2.exports = function(object) {
294
+ return keys2(isValue2(object) ? Object(object) : object);
295
+ };
296
+ }
297
+ });
298
+
299
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/keys/index.js
300
+ var require_keys = __commonJS({
301
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/keys/index.js"(exports2, module2) {
302
+ "use strict";
303
+ module2.exports = require_is_implemented5()() ? Object.keys : require_shim();
304
+ }
305
+ });
306
+
307
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/valid-value.js
308
+ var require_valid_value = __commonJS({
309
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/valid-value.js"(exports2, module2) {
310
+ "use strict";
311
+ var isValue2 = require_is_value();
312
+ module2.exports = function(value) {
313
+ if (!isValue2(value))
314
+ throw new TypeError("Cannot use null or undefined");
315
+ return value;
316
+ };
317
+ }
318
+ });
319
+
320
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/assign/shim.js
321
+ var require_shim2 = __commonJS({
322
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/assign/shim.js"(exports2, module2) {
323
+ "use strict";
324
+ var keys2 = require_keys();
325
+ var value = require_valid_value();
326
+ var max = Math.max;
327
+ module2.exports = function(dest, src) {
328
+ var error, i2, length = max(arguments.length, 2), assign;
329
+ dest = Object(value(dest));
330
+ assign = /* @__PURE__ */ __name(function(key) {
331
+ try {
332
+ dest[key] = src[key];
333
+ } catch (e) {
334
+ if (!error)
335
+ error = e;
336
+ }
337
+ }, "assign");
338
+ for (i2 = 1; i2 < length; ++i2) {
339
+ src = arguments[i2];
340
+ keys2(src).forEach(assign);
341
+ }
342
+ if (error !== void 0)
343
+ throw error;
344
+ return dest;
345
+ };
346
+ }
347
+ });
348
+
349
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/assign/index.js
350
+ var require_assign = __commonJS({
351
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/assign/index.js"(exports2, module2) {
352
+ "use strict";
353
+ module2.exports = require_is_implemented4()() ? Object.assign : require_shim2();
354
+ }
355
+ });
356
+
357
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/normalize-options.js
358
+ var require_normalize_options = __commonJS({
359
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/normalize-options.js"(exports2, module2) {
360
+ "use strict";
361
+ var isValue2 = require_is_value();
362
+ var forEach = Array.prototype.forEach;
363
+ var create = Object.create;
364
+ var process2 = /* @__PURE__ */ __name(function(src, obj) {
365
+ var key;
366
+ for (key in src)
367
+ obj[key] = src[key];
368
+ }, "process");
369
+ module2.exports = function(opts1) {
370
+ var result = create(null);
371
+ forEach.call(arguments, function(options) {
372
+ if (!isValue2(options))
373
+ return;
374
+ process2(Object(options), result);
375
+ });
376
+ return result;
377
+ };
378
+ }
379
+ });
380
+
381
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/string/#/contains/is-implemented.js
382
+ var require_is_implemented6 = __commonJS({
383
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/string/#/contains/is-implemented.js"(exports2, module2) {
384
+ "use strict";
385
+ var str = "razdwatrzy";
386
+ module2.exports = function() {
387
+ if (typeof str.contains !== "function")
388
+ return false;
389
+ return str.contains("dwa") === true && str.contains("foo") === false;
390
+ };
391
+ }
392
+ });
393
+
394
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/string/#/contains/shim.js
395
+ var require_shim3 = __commonJS({
396
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/string/#/contains/shim.js"(exports2, module2) {
397
+ "use strict";
398
+ var indexOf = String.prototype.indexOf;
399
+ module2.exports = function(searchString) {
400
+ return indexOf.call(this, searchString, arguments[1]) > -1;
401
+ };
402
+ }
403
+ });
404
+
405
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/string/#/contains/index.js
406
+ var require_contains = __commonJS({
407
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/string/#/contains/index.js"(exports2, module2) {
408
+ "use strict";
409
+ module2.exports = require_is_implemented6()() ? String.prototype.contains : require_shim3();
410
+ }
411
+ });
412
+
413
+ // node_modules/.pnpm/d@1.0.2/node_modules/d/index.js
414
+ var require_d = __commonJS({
415
+ "node_modules/.pnpm/d@1.0.2/node_modules/d/index.js"(exports2, module2) {
416
+ "use strict";
417
+ var isValue2 = require_is();
418
+ var isPlainFunction = require_is5();
419
+ var assign = require_assign();
420
+ var normalizeOpts = require_normalize_options();
421
+ var contains = require_contains();
422
+ var d = module2.exports = function(dscr, value) {
423
+ var c, e, w, options, desc;
424
+ if (arguments.length < 2 || typeof dscr !== "string") {
425
+ options = value;
426
+ value = dscr;
427
+ dscr = null;
428
+ } else {
429
+ options = arguments[2];
430
+ }
431
+ if (isValue2(dscr)) {
432
+ c = contains.call(dscr, "c");
433
+ e = contains.call(dscr, "e");
434
+ w = contains.call(dscr, "w");
435
+ } else {
436
+ c = w = true;
437
+ e = false;
438
+ }
439
+ desc = {
440
+ value,
441
+ configurable: c,
442
+ enumerable: e,
443
+ writable: w
444
+ };
445
+ return !options ? desc : assign(normalizeOpts(options), desc);
446
+ };
447
+ d.gs = function(dscr, get, set) {
448
+ var c, e, options, desc;
449
+ if (typeof dscr !== "string") {
450
+ options = set;
451
+ set = get;
452
+ get = dscr;
453
+ dscr = null;
454
+ } else {
455
+ options = arguments[3];
456
+ }
457
+ if (!isValue2(get)) {
458
+ get = void 0;
459
+ } else if (!isPlainFunction(get)) {
460
+ options = get;
461
+ get = set = void 0;
462
+ } else if (!isValue2(set)) {
463
+ set = void 0;
464
+ } else if (!isPlainFunction(set)) {
465
+ options = set;
466
+ set = void 0;
467
+ }
468
+ if (isValue2(dscr)) {
469
+ c = contains.call(dscr, "c");
470
+ e = contains.call(dscr, "e");
471
+ } else {
472
+ c = true;
473
+ e = false;
474
+ }
475
+ desc = {
476
+ get,
477
+ set,
478
+ configurable: c,
479
+ enumerable: e
480
+ };
481
+ return !options ? desc : assign(normalizeOpts(options), desc);
482
+ };
483
+ }
484
+ });
485
+
486
+ // node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/is-symbol.js
487
+ var require_is_symbol = __commonJS({
488
+ "node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/is-symbol.js"(exports2, module2) {
489
+ "use strict";
490
+ module2.exports = function(value) {
491
+ if (!value)
492
+ return false;
493
+ if (typeof value === "symbol")
494
+ return true;
495
+ if (!value.constructor)
496
+ return false;
497
+ if (value.constructor.name !== "Symbol")
498
+ return false;
499
+ return value[value.constructor.toStringTag] === "Symbol";
500
+ };
501
+ }
502
+ });
503
+
504
+ // node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/validate-symbol.js
505
+ var require_validate_symbol = __commonJS({
506
+ "node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/validate-symbol.js"(exports2, module2) {
507
+ "use strict";
508
+ var isSymbol2 = require_is_symbol();
509
+ module2.exports = function(value) {
510
+ if (!isSymbol2(value))
511
+ throw new TypeError(value + " is not a symbol");
512
+ return value;
513
+ };
514
+ }
515
+ });
516
+
517
+ // node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/lib/private/generate-name.js
518
+ var require_generate_name = __commonJS({
519
+ "node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/lib/private/generate-name.js"(exports2, module2) {
520
+ "use strict";
521
+ var d = require_d();
522
+ var create = Object.create;
523
+ var defineProperty2 = Object.defineProperty;
524
+ var objPrototype = Object.prototype;
525
+ var created = create(null);
526
+ module2.exports = function(desc) {
527
+ var postfix = 0, name, ie11BugWorkaround;
528
+ while (created[desc + (postfix || "")])
529
+ ++postfix;
530
+ desc += postfix || "";
531
+ created[desc] = true;
532
+ name = "@@" + desc;
533
+ defineProperty2(objPrototype, name, d.gs(null, function(value) {
534
+ if (ie11BugWorkaround)
535
+ return;
536
+ ie11BugWorkaround = true;
537
+ defineProperty2(this, name, d(value));
538
+ ie11BugWorkaround = false;
539
+ }));
540
+ return name;
541
+ };
542
+ }
543
+ });
544
+
545
+ // node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/lib/private/setup/standard-symbols.js
546
+ var require_standard_symbols = __commonJS({
547
+ "node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/lib/private/setup/standard-symbols.js"(exports2, module2) {
548
+ "use strict";
549
+ var d = require_d();
550
+ var NativeSymbol = require_global_this().Symbol;
551
+ module2.exports = function(SymbolPolyfill) {
552
+ return Object.defineProperties(SymbolPolyfill, {
553
+ // To ensure proper interoperability with other native functions (e.g. Array.from)
554
+ // fallback to eventual native implementation of given symbol
555
+ hasInstance: d("", NativeSymbol && NativeSymbol.hasInstance || SymbolPolyfill("hasInstance")),
556
+ isConcatSpreadable: d("", NativeSymbol && NativeSymbol.isConcatSpreadable || SymbolPolyfill("isConcatSpreadable")),
557
+ iterator: d("", NativeSymbol && NativeSymbol.iterator || SymbolPolyfill("iterator")),
558
+ match: d("", NativeSymbol && NativeSymbol.match || SymbolPolyfill("match")),
559
+ replace: d("", NativeSymbol && NativeSymbol.replace || SymbolPolyfill("replace")),
560
+ search: d("", NativeSymbol && NativeSymbol.search || SymbolPolyfill("search")),
561
+ species: d("", NativeSymbol && NativeSymbol.species || SymbolPolyfill("species")),
562
+ split: d("", NativeSymbol && NativeSymbol.split || SymbolPolyfill("split")),
563
+ toPrimitive: d("", NativeSymbol && NativeSymbol.toPrimitive || SymbolPolyfill("toPrimitive")),
564
+ toStringTag: d("", NativeSymbol && NativeSymbol.toStringTag || SymbolPolyfill("toStringTag")),
565
+ unscopables: d("", NativeSymbol && NativeSymbol.unscopables || SymbolPolyfill("unscopables"))
566
+ });
567
+ };
568
+ }
569
+ });
570
+
571
+ // node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/lib/private/setup/symbol-registry.js
572
+ var require_symbol_registry = __commonJS({
573
+ "node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/lib/private/setup/symbol-registry.js"(exports2, module2) {
574
+ "use strict";
575
+ var d = require_d();
576
+ var validateSymbol = require_validate_symbol();
577
+ var registry = /* @__PURE__ */ Object.create(null);
578
+ module2.exports = function(SymbolPolyfill) {
579
+ return Object.defineProperties(SymbolPolyfill, {
580
+ for: d(function(key) {
581
+ if (registry[key])
582
+ return registry[key];
583
+ return registry[key] = SymbolPolyfill(String(key));
584
+ }),
585
+ keyFor: d(function(symbol) {
586
+ var key;
587
+ validateSymbol(symbol);
588
+ for (key in registry) {
589
+ if (registry[key] === symbol)
590
+ return key;
591
+ }
592
+ return void 0;
593
+ })
594
+ });
595
+ };
596
+ }
597
+ });
598
+
599
+ // node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/polyfill.js
600
+ var require_polyfill = __commonJS({
601
+ "node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/polyfill.js"(exports2, module2) {
602
+ "use strict";
603
+ var d = require_d();
604
+ var validateSymbol = require_validate_symbol();
605
+ var NativeSymbol = require_global_this().Symbol;
606
+ var generateName = require_generate_name();
607
+ var setupStandardSymbols = require_standard_symbols();
608
+ var setupSymbolRegistry = require_symbol_registry();
609
+ var create = Object.create;
610
+ var defineProperties = Object.defineProperties;
611
+ var defineProperty2 = Object.defineProperty;
612
+ var SymbolPolyfill;
613
+ var HiddenSymbol;
614
+ var isNativeSafe;
615
+ if (typeof NativeSymbol === "function") {
616
+ try {
617
+ String(NativeSymbol());
618
+ isNativeSafe = true;
619
+ } catch (ignore) {
620
+ }
621
+ } else {
622
+ NativeSymbol = null;
623
+ }
624
+ HiddenSymbol = /* @__PURE__ */ __name(function Symbol3(description) {
625
+ if (this instanceof HiddenSymbol)
626
+ throw new TypeError("Symbol is not a constructor");
627
+ return SymbolPolyfill(description);
628
+ }, "Symbol");
629
+ module2.exports = SymbolPolyfill = /* @__PURE__ */ __name(function Symbol3(description) {
630
+ var symbol;
631
+ if (this instanceof Symbol3)
632
+ throw new TypeError("Symbol is not a constructor");
633
+ if (isNativeSafe)
634
+ return NativeSymbol(description);
635
+ symbol = create(HiddenSymbol.prototype);
636
+ description = description === void 0 ? "" : String(description);
637
+ return defineProperties(symbol, {
638
+ __description__: d("", description),
639
+ __name__: d("", generateName(description))
640
+ });
641
+ }, "Symbol");
642
+ setupStandardSymbols(SymbolPolyfill);
643
+ setupSymbolRegistry(SymbolPolyfill);
644
+ defineProperties(HiddenSymbol.prototype, {
645
+ constructor: d(SymbolPolyfill),
646
+ toString: d("", function() {
647
+ return this.__name__;
648
+ })
649
+ });
650
+ defineProperties(SymbolPolyfill.prototype, {
651
+ toString: d(function() {
652
+ return "Symbol (" + validateSymbol(this).__description__ + ")";
653
+ }),
654
+ valueOf: d(function() {
655
+ return validateSymbol(this);
656
+ })
657
+ });
658
+ defineProperty2(SymbolPolyfill.prototype, SymbolPolyfill.toPrimitive, d("", function() {
659
+ var symbol = validateSymbol(this);
660
+ if (typeof symbol === "symbol")
661
+ return symbol;
662
+ return symbol.toString();
663
+ }));
664
+ defineProperty2(SymbolPolyfill.prototype, SymbolPolyfill.toStringTag, d("c", "Symbol"));
665
+ defineProperty2(HiddenSymbol.prototype, SymbolPolyfill.toStringTag, d("c", SymbolPolyfill.prototype[SymbolPolyfill.toStringTag]));
666
+ defineProperty2(HiddenSymbol.prototype, SymbolPolyfill.toPrimitive, d("c", SymbolPolyfill.prototype[SymbolPolyfill.toPrimitive]));
667
+ }
668
+ });
669
+
670
+ // node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/index.js
671
+ var require_es6_symbol = __commonJS({
672
+ "node_modules/.pnpm/es6-symbol@3.1.4/node_modules/es6-symbol/index.js"(exports2, module2) {
673
+ "use strict";
674
+ module2.exports = require_is_implemented3()() ? require_global_this().Symbol : require_polyfill();
675
+ }
676
+ });
677
+
678
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/function/is-arguments.js
679
+ var require_is_arguments = __commonJS({
680
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/function/is-arguments.js"(exports2, module2) {
681
+ "use strict";
682
+ var objToString = Object.prototype.toString;
683
+ var id = objToString.call(/* @__PURE__ */ function() {
684
+ return arguments;
685
+ }());
686
+ module2.exports = function(value) {
687
+ return objToString.call(value) === id;
688
+ };
689
+ }
690
+ });
691
+
692
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/function/is-function.js
693
+ var require_is_function = __commonJS({
694
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/function/is-function.js"(exports2, module2) {
695
+ "use strict";
696
+ var objToString = Object.prototype.toString;
697
+ var isFunctionStringTag = RegExp.prototype.test.bind(/^[object [A-Za-z0-9]*Function]$/);
698
+ module2.exports = function(value) {
699
+ return typeof value === "function" && isFunctionStringTag(objToString.call(value));
700
+ };
701
+ }
702
+ });
703
+
704
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/math/sign/is-implemented.js
705
+ var require_is_implemented7 = __commonJS({
706
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/math/sign/is-implemented.js"(exports2, module2) {
707
+ "use strict";
708
+ module2.exports = function() {
709
+ var sign = Math.sign;
710
+ if (typeof sign !== "function")
711
+ return false;
712
+ return sign(10) === 1 && sign(-20) === -1;
713
+ };
714
+ }
715
+ });
716
+
717
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/math/sign/shim.js
718
+ var require_shim4 = __commonJS({
719
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/math/sign/shim.js"(exports2, module2) {
720
+ "use strict";
721
+ module2.exports = function(value) {
722
+ value = Number(value);
723
+ if (isNaN(value) || value === 0)
724
+ return value;
725
+ return value > 0 ? 1 : -1;
726
+ };
727
+ }
728
+ });
729
+
730
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/math/sign/index.js
731
+ var require_sign = __commonJS({
732
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/math/sign/index.js"(exports2, module2) {
733
+ "use strict";
734
+ module2.exports = require_is_implemented7()() ? Math.sign : require_shim4();
735
+ }
736
+ });
737
+
738
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/number/to-integer.js
739
+ var require_to_integer = __commonJS({
740
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/number/to-integer.js"(exports2, module2) {
741
+ "use strict";
742
+ var sign = require_sign();
743
+ var abs = Math.abs;
744
+ var floor = Math.floor;
745
+ module2.exports = function(value) {
746
+ if (isNaN(value))
747
+ return 0;
748
+ value = Number(value);
749
+ if (value === 0 || !isFinite(value))
750
+ return value;
751
+ return sign(value) * floor(abs(value));
752
+ };
753
+ }
754
+ });
755
+
756
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/number/to-pos-integer.js
757
+ var require_to_pos_integer = __commonJS({
758
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/number/to-pos-integer.js"(exports2, module2) {
759
+ "use strict";
760
+ var toInteger = require_to_integer();
761
+ var max = Math.max;
762
+ module2.exports = function(value) {
763
+ return max(0, toInteger(value));
764
+ };
765
+ }
766
+ });
767
+
768
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/valid-callable.js
769
+ var require_valid_callable = __commonJS({
770
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/valid-callable.js"(exports2, module2) {
771
+ "use strict";
772
+ module2.exports = function(fn) {
773
+ if (typeof fn !== "function")
774
+ throw new TypeError(fn + " is not a function");
775
+ return fn;
776
+ };
777
+ }
778
+ });
779
+
780
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/string/is-string.js
781
+ var require_is_string = __commonJS({
782
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/string/is-string.js"(exports2, module2) {
783
+ "use strict";
784
+ var objToString = Object.prototype.toString;
785
+ var id = objToString.call("");
786
+ module2.exports = function(value) {
787
+ return typeof value === "string" || value && typeof value === "object" && (value instanceof String || objToString.call(value) === id) || false;
788
+ };
789
+ }
790
+ });
791
+
792
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/array/from/shim.js
793
+ var require_shim5 = __commonJS({
794
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/array/from/shim.js"(exports2, module2) {
795
+ "use strict";
796
+ var iteratorSymbol = require_es6_symbol().iterator;
797
+ var isArguments2 = require_is_arguments();
798
+ var isFunction2 = require_is_function();
799
+ var toPosInt = require_to_pos_integer();
800
+ var callable = require_valid_callable();
801
+ var validValue = require_valid_value();
802
+ var isValue2 = require_is_value();
803
+ var isString = require_is_string();
804
+ var isArray2 = Array.isArray;
805
+ var call = Function.prototype.call;
806
+ var desc = {
807
+ configurable: true,
808
+ enumerable: true,
809
+ writable: true,
810
+ value: null
811
+ };
812
+ var defineProperty2 = Object.defineProperty;
813
+ module2.exports = function(arrayLike) {
814
+ var mapFn = arguments[1], thisArg = arguments[2], Context, i2, j, arr, length, code, iterator, result, getIterator, value;
815
+ arrayLike = Object(validValue(arrayLike));
816
+ if (isValue2(mapFn))
817
+ callable(mapFn);
818
+ if (!this || this === Array || !isFunction2(this)) {
819
+ if (!mapFn) {
820
+ if (isArguments2(arrayLike)) {
821
+ length = arrayLike.length;
822
+ if (length !== 1)
823
+ return Array.apply(null, arrayLike);
824
+ arr = new Array(1);
825
+ arr[0] = arrayLike[0];
826
+ return arr;
827
+ }
828
+ if (isArray2(arrayLike)) {
829
+ arr = new Array(length = arrayLike.length);
830
+ for (i2 = 0; i2 < length; ++i2)
831
+ arr[i2] = arrayLike[i2];
832
+ return arr;
833
+ }
834
+ }
835
+ arr = [];
836
+ } else {
837
+ Context = this;
838
+ }
839
+ if (!isArray2(arrayLike)) {
840
+ if ((getIterator = arrayLike[iteratorSymbol]) !== void 0) {
841
+ iterator = callable(getIterator).call(arrayLike);
842
+ if (Context)
843
+ arr = new Context();
844
+ result = iterator.next();
845
+ i2 = 0;
846
+ while (!result.done) {
847
+ value = mapFn ? call.call(mapFn, thisArg, result.value, i2) : result.value;
848
+ if (Context) {
849
+ desc.value = value;
850
+ defineProperty2(arr, i2, desc);
851
+ } else {
852
+ arr[i2] = value;
853
+ }
854
+ result = iterator.next();
855
+ ++i2;
856
+ }
857
+ length = i2;
858
+ } else if (isString(arrayLike)) {
859
+ length = arrayLike.length;
860
+ if (Context)
861
+ arr = new Context();
862
+ for (i2 = 0, j = 0; i2 < length; ++i2) {
863
+ value = arrayLike[i2];
864
+ if (i2 + 1 < length) {
865
+ code = value.charCodeAt(0);
866
+ if (code >= 55296 && code <= 56319)
867
+ value += arrayLike[++i2];
868
+ }
869
+ value = mapFn ? call.call(mapFn, thisArg, value, j) : value;
870
+ if (Context) {
871
+ desc.value = value;
872
+ defineProperty2(arr, j, desc);
873
+ } else {
874
+ arr[j] = value;
875
+ }
876
+ ++j;
877
+ }
878
+ length = j;
879
+ }
880
+ }
881
+ if (length === void 0) {
882
+ length = toPosInt(arrayLike.length);
883
+ if (Context)
884
+ arr = new Context(length);
885
+ for (i2 = 0; i2 < length; ++i2) {
886
+ value = mapFn ? call.call(mapFn, thisArg, arrayLike[i2], i2) : arrayLike[i2];
887
+ if (Context) {
888
+ desc.value = value;
889
+ defineProperty2(arr, i2, desc);
890
+ } else {
891
+ arr[i2] = value;
892
+ }
893
+ }
894
+ }
895
+ if (Context) {
896
+ desc.value = null;
897
+ arr.length = length;
898
+ }
899
+ return arr;
900
+ };
901
+ }
902
+ });
903
+
904
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/array/from/index.js
905
+ var require_from = __commonJS({
906
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/array/from/index.js"(exports2, module2) {
907
+ "use strict";
908
+ module2.exports = require_is_implemented()() ? Array.from : require_shim5();
909
+ }
910
+ });
911
+
912
+ // node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/primitive-set.js
913
+ var require_primitive_set = __commonJS({
914
+ "node_modules/.pnpm/es5-ext@0.10.64/node_modules/es5-ext/object/primitive-set.js"(exports2, module2) {
915
+ "use strict";
916
+ var forEach = Array.prototype.forEach;
917
+ var create = Object.create;
918
+ module2.exports = function(arg) {
919
+ var set = create(null);
920
+ forEach.call(arguments, function(name) {
921
+ set[name] = true;
922
+ });
923
+ return set;
924
+ };
925
+ }
926
+ });
927
+
928
+ // node_modules/.pnpm/esniff@1.1.3/node_modules/esniff/lib/ws-eol.js
929
+ var require_ws_eol = __commonJS({
930
+ "node_modules/.pnpm/esniff@1.1.3/node_modules/esniff/lib/ws-eol.js"(exports2, module2) {
931
+ "use strict";
932
+ var from = require_from();
933
+ var primitiveSet = require_primitive_set();
934
+ module2.exports = primitiveSet.apply(null, from("\n\r\u2028\u2029"));
935
+ }
936
+ });
937
+
938
+ // node_modules/.pnpm/esniff@1.1.3/node_modules/esniff/lib/ws-inline.js
939
+ var require_ws_inline = __commonJS({
940
+ "node_modules/.pnpm/esniff@1.1.3/node_modules/esniff/lib/ws-inline.js"(exports2, module2) {
941
+ "use strict";
942
+ var from = require_from();
943
+ var primitiveSet = require_primitive_set();
944
+ module2.exports = primitiveSet.apply(null, from(" \f \v\u200B\xA0\u1680\u200B\u180E\u2000\u200B\u2001\u2002\u200B\u2003\u2004\u200B\u2005\u2006\u200B\u2007\u2008\u200B\u2009\u200A\u200B\u200B\u200B\u202F\u205F\u200B\u3000"));
945
+ }
946
+ });
947
+
948
+ // node_modules/.pnpm/esniff@1.1.3/node_modules/esniff/lib/ws.js
949
+ var require_ws = __commonJS({
950
+ "node_modules/.pnpm/esniff@1.1.3/node_modules/esniff/lib/ws.js"(exports2, module2) {
951
+ "use strict";
952
+ var primitiveSet = require_primitive_set();
953
+ var eol = require_ws_eol();
954
+ var inline = require_ws_inline();
955
+ module2.exports = primitiveSet.apply(null, Object.keys(eol).concat(Object.keys(inline)));
956
+ }
957
+ });
958
+
959
+ // node_modules/.pnpm/esniff@1.1.3/node_modules/esniff/index.js
960
+ var require_esniff = __commonJS({
961
+ "node_modules/.pnpm/esniff@1.1.3/node_modules/esniff/index.js"(exports2, module2) {
962
+ "use strict";
963
+ var from = require_from();
964
+ var primitiveSet = require_primitive_set();
965
+ var value = require_valid_value();
966
+ var isValue2 = require_is_value();
967
+ var callable = require_valid_callable();
968
+ var d = require_d();
969
+ var eolSet = require_ws_eol();
970
+ var wsSet = require_ws();
971
+ var objHasOwnProperty = Object.prototype.hasOwnProperty;
972
+ var preRegExpSet = primitiveSet.apply(null, from(";{=([,<>+-*/%&|^!~?:}"));
973
+ var nonNameSet = primitiveSet.apply(null, from(";{=([,<>+-*/%&|^!~?:})]."));
974
+ var move;
975
+ var startCollect;
976
+ var endCollect;
977
+ var collectNest;
978
+ var $ws;
979
+ var $common;
980
+ var $string;
981
+ var $comment;
982
+ var $multiComment;
983
+ var $regExp;
984
+ var i2;
985
+ var char;
986
+ var line;
987
+ var columnIndex;
988
+ var afterWs;
989
+ var previousChar;
990
+ var nest;
991
+ var nestedTokens;
992
+ var results;
993
+ var userCode;
994
+ var userTriggerChar;
995
+ var isUserTriggerOperatorChar;
996
+ var userCallback;
997
+ var quote;
998
+ var collectIndex;
999
+ var data;
1000
+ var nestRelease;
1001
+ var handleEol;
1002
+ handleEol = /* @__PURE__ */ __name(function() {
1003
+ if (char === "\r" && userCode[i2 + 1] === "\n")
1004
+ ++i2;
1005
+ columnIndex = i2 + 1;
1006
+ ++line;
1007
+ }, "handleEol");
1008
+ move = /* @__PURE__ */ __name(function(j) {
1009
+ if (!char)
1010
+ return;
1011
+ if (i2 >= j)
1012
+ return;
1013
+ while (i2 < j) {
1014
+ if (!char)
1015
+ return;
1016
+ if (objHasOwnProperty.call(wsSet, char)) {
1017
+ if (objHasOwnProperty.call(eolSet, char))
1018
+ handleEol();
1019
+ } else {
1020
+ previousChar = char;
1021
+ }
1022
+ char = userCode[++i2];
1023
+ }
1024
+ }, "move");
1025
+ startCollect = /* @__PURE__ */ __name(function(oldNestRelease) {
1026
+ var isNewLine = objHasOwnProperty.call(eolSet, userCode[i2]);
1027
+ if (isValue2(collectIndex))
1028
+ nestedTokens.push([
1029
+ data,
1030
+ collectIndex,
1031
+ oldNestRelease
1032
+ ]);
1033
+ data = {
1034
+ point: i2 + 1,
1035
+ line: isNewLine ? line + 1 : line,
1036
+ column: isNewLine ? 0 : i2 + 1 - columnIndex
1037
+ };
1038
+ collectIndex = i2;
1039
+ }, "startCollect");
1040
+ endCollect = /* @__PURE__ */ __name(function() {
1041
+ var previous;
1042
+ data.raw = userCode.slice(collectIndex, i2);
1043
+ results.push(data);
1044
+ if (nestedTokens.length) {
1045
+ previous = nestedTokens.pop();
1046
+ data = previous[0];
1047
+ collectIndex = previous[1];
1048
+ nestRelease = previous[2];
1049
+ return;
1050
+ }
1051
+ data = null;
1052
+ collectIndex = null;
1053
+ nestRelease = null;
1054
+ }, "endCollect");
1055
+ collectNest = /* @__PURE__ */ __name(function() {
1056
+ var old = nestRelease;
1057
+ nestRelease = nest;
1058
+ ++nest;
1059
+ move(i2 + 1);
1060
+ startCollect(old);
1061
+ return $ws;
1062
+ }, "collectNest");
1063
+ $common = /* @__PURE__ */ __name(function() {
1064
+ if (char === "'" || char === '"') {
1065
+ quote = char;
1066
+ char = userCode[++i2];
1067
+ return $string;
1068
+ }
1069
+ if (char === "(" || char === "{" || char === "[") {
1070
+ ++nest;
1071
+ } else if (char === ")" || char === "}" || char === "]") {
1072
+ if (nestRelease === --nest)
1073
+ endCollect();
1074
+ } else if (char === "/") {
1075
+ if (objHasOwnProperty.call(preRegExpSet, previousChar)) {
1076
+ char = userCode[++i2];
1077
+ return $regExp;
1078
+ }
1079
+ }
1080
+ if (char !== userTriggerChar || !isUserTriggerOperatorChar && previousChar && !afterWs && !objHasOwnProperty.call(nonNameSet, previousChar)) {
1081
+ previousChar = char;
1082
+ char = userCode[++i2];
1083
+ return $ws;
1084
+ }
1085
+ return userCallback(i2, previousChar, nest);
1086
+ }, "$common");
1087
+ $comment = /* @__PURE__ */ __name(function() {
1088
+ while (char) {
1089
+ if (objHasOwnProperty.call(eolSet, char)) {
1090
+ handleEol();
1091
+ return;
1092
+ }
1093
+ char = userCode[++i2];
1094
+ }
1095
+ }, "$comment");
1096
+ $multiComment = /* @__PURE__ */ __name(function() {
1097
+ while (char) {
1098
+ if (char === "*") {
1099
+ char = userCode[++i2];
1100
+ if (char === "/")
1101
+ return;
1102
+ continue;
1103
+ }
1104
+ if (objHasOwnProperty.call(eolSet, char))
1105
+ handleEol();
1106
+ char = userCode[++i2];
1107
+ }
1108
+ }, "$multiComment");
1109
+ $ws = /* @__PURE__ */ __name(function() {
1110
+ var next;
1111
+ afterWs = false;
1112
+ while (char) {
1113
+ if (objHasOwnProperty.call(wsSet, char)) {
1114
+ afterWs = true;
1115
+ if (objHasOwnProperty.call(eolSet, char))
1116
+ handleEol();
1117
+ } else if (char === "/") {
1118
+ next = userCode[i2 + 1];
1119
+ if (next === "/") {
1120
+ char = userCode[i2 += 2];
1121
+ afterWs = true;
1122
+ $comment();
1123
+ } else if (next === "*") {
1124
+ char = userCode[i2 += 2];
1125
+ afterWs = true;
1126
+ $multiComment();
1127
+ } else {
1128
+ break;
1129
+ }
1130
+ } else {
1131
+ break;
1132
+ }
1133
+ char = userCode[++i2];
1134
+ }
1135
+ if (!char)
1136
+ return null;
1137
+ return $common;
1138
+ }, "$ws");
1139
+ $string = /* @__PURE__ */ __name(function() {
1140
+ while (char) {
1141
+ if (char === quote) {
1142
+ char = userCode[++i2];
1143
+ previousChar = quote;
1144
+ return $ws;
1145
+ }
1146
+ if (char === "\\") {
1147
+ if (objHasOwnProperty.call(eolSet, userCode[++i2]))
1148
+ handleEol();
1149
+ }
1150
+ char = userCode[++i2];
1151
+ }
1152
+ return null;
1153
+ }, "$string");
1154
+ $regExp = /* @__PURE__ */ __name(function() {
1155
+ while (char) {
1156
+ if (char === "/") {
1157
+ previousChar = "/";
1158
+ char = userCode[++i2];
1159
+ return $ws;
1160
+ }
1161
+ if (char === "\\")
1162
+ ++i2;
1163
+ char = userCode[++i2];
1164
+ }
1165
+ return null;
1166
+ }, "$regExp");
1167
+ module2.exports = exports2 = /* @__PURE__ */ __name(function(code, triggerChar, callback) {
1168
+ var state;
1169
+ userCode = String(value(code));
1170
+ userTriggerChar = String(value(triggerChar));
1171
+ if (userTriggerChar.length !== 1) {
1172
+ throw new TypeError(userTriggerChar + " should be one character long string");
1173
+ }
1174
+ userCallback = callable(callback);
1175
+ isUserTriggerOperatorChar = objHasOwnProperty.call(nonNameSet, userTriggerChar);
1176
+ i2 = 0;
1177
+ char = userCode[i2];
1178
+ line = 1;
1179
+ columnIndex = 0;
1180
+ afterWs = false;
1181
+ previousChar = null;
1182
+ nest = 0;
1183
+ nestedTokens = [];
1184
+ results = [];
1185
+ exports2.forceStop = false;
1186
+ state = $ws;
1187
+ while (state)
1188
+ state = state();
1189
+ return results;
1190
+ }, "exports");
1191
+ Object.defineProperties(exports2, {
1192
+ $ws: d($ws),
1193
+ $common: d($common),
1194
+ collectNest: d(collectNest),
1195
+ move: d(move),
1196
+ index: d.gs(function() {
1197
+ return i2;
1198
+ }),
1199
+ line: d.gs(function() {
1200
+ return line;
1201
+ }),
1202
+ nest: d.gs(function() {
1203
+ return nest;
1204
+ }),
1205
+ columnIndex: d.gs(function() {
1206
+ return columnIndex;
1207
+ }),
1208
+ next: d(function(step) {
1209
+ if (!char)
1210
+ return null;
1211
+ move(i2 + (step || 1));
1212
+ return $ws();
1213
+ }),
1214
+ resume: d(function() {
1215
+ return $common;
1216
+ })
1217
+ });
1218
+ }
1219
+ });
1220
+
1221
+ // node_modules/.pnpm/esniff@1.1.3/node_modules/esniff/is-var-name-valid.js
1222
+ var require_is_var_name_valid = __commonJS({
1223
+ "node_modules/.pnpm/esniff@1.1.3/node_modules/esniff/is-var-name-valid.js"(exports2, module2) {
1224
+ "use strict";
1225
+ var isES51ReservedWord = RegExp.prototype.test.bind(new RegExp("^(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$"));
1226
+ var identifierStart = "$A-Z\\_a-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F0\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC";
1227
+ var identifierPartExclusive = "0-9\u0300-\u036F\u0483-\u0487\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u0669\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u06F0-\u06F9\u0711\u0730-\u074A\u07A6-\u07B0\u07C0-\u07C9\u07EB-\u07F3\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u08E4-\u08FE\u0900-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0966-\u096F\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u09E6-\u09EF\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A66-\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0AE6-\u0AEF\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B62\u0B63\u0B66-\u0B6F\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0BE6-\u0BEF\u0C01-\u0C03\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C66-\u0C6F\u0C82\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0CE6-\u0CEF\u0D02\u0D03\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D66-\u0D6F\u0D82\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0E50-\u0E59\u0EB1\u0EB4-\u0EB9\u0EBB\u0EBC\u0EC8-\u0ECD\u0ED0-\u0ED9\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1040-\u1049\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F-\u109D\u135D-\u135F\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u18A9\u1920-\u192B\u1930-\u193B\u1946-\u194F\u19B0-\u19C0\u19C8\u19C9\u19D0-\u19D9\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1B00-\u1B04\u1B34-\u1B44\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BB0-\u1BB9\u1BE6-\u1BF3\u1C24-\u1C37\u1C40-\u1C49\u1C50-\u1C59\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF2-\u1CF4\u1DC0-\u1DE6\u1DFC-\u1DFF\u200C\u200D\u203F\u2040\u2054\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\uA620-\uA629\uA66F\uA674-\uA67D\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA880\uA881\uA8B4-\uA8C4\uA8D0-\uA8D9\uA8E0-\uA8F1\uA900-\uA909\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9D0-\uA9D9\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA50-\uAA59\uAA7B\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uABF0-\uABF9\uFB1E\uFE00-\uFE0F\uFE20-\uFE26\uFE33\uFE34\uFE4D-\uFE4F\uFF10-\uFF19\uFF3F";
1228
+ var isES51Identifier = RegExp.prototype.test.bind(new RegExp("^[" + identifierStart + "][" + identifierStart + identifierPartExclusive + "]*$"));
1229
+ module2.exports = function(varName) {
1230
+ return isES51Identifier(varName) && !isES51ReservedWord(varName);
1231
+ };
1232
+ }
1233
+ });
1234
+
1235
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_freeGlobal.js
1236
+ var freeGlobal = typeof global == "object" && global && global.Object === Object && global;
1237
+ var freeGlobal_default = freeGlobal;
1238
+
1239
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_root.js
1240
+ var freeSelf = typeof self == "object" && self && self.Object === Object && self;
1241
+ var root = freeGlobal_default || freeSelf || Function("return this")();
1242
+ var root_default = root;
1243
+
1244
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_Symbol.js
1245
+ var Symbol2 = root_default.Symbol;
1246
+ var Symbol_default = Symbol2;
1247
+
1248
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_getRawTag.js
1249
+ var objectProto = Object.prototype;
1250
+ var hasOwnProperty2 = objectProto.hasOwnProperty;
1251
+ var nativeObjectToString = objectProto.toString;
1252
+ var symToStringTag = Symbol_default ? Symbol_default.toStringTag : void 0;
1253
+ function getRawTag(value) {
1254
+ var isOwn = hasOwnProperty2.call(value, symToStringTag), tag = value[symToStringTag];
1255
+ try {
1256
+ value[symToStringTag] = void 0;
1257
+ var unmasked = true;
1258
+ } catch (e) {
1259
+ }
1260
+ var result = nativeObjectToString.call(value);
1261
+ if (unmasked) {
1262
+ if (isOwn) {
1263
+ value[symToStringTag] = tag;
1264
+ } else {
1265
+ delete value[symToStringTag];
1266
+ }
1267
+ }
1268
+ return result;
1269
+ }
1270
+ __name(getRawTag, "getRawTag");
1271
+ var getRawTag_default = getRawTag;
1272
+
1273
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_objectToString.js
1274
+ var objectProto2 = Object.prototype;
1275
+ var nativeObjectToString2 = objectProto2.toString;
1276
+ function objectToString(value) {
1277
+ return nativeObjectToString2.call(value);
1278
+ }
1279
+ __name(objectToString, "objectToString");
1280
+ var objectToString_default = objectToString;
1281
+
1282
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseGetTag.js
1283
+ var nullTag = "[object Null]";
1284
+ var undefinedTag = "[object Undefined]";
1285
+ var symToStringTag2 = Symbol_default ? Symbol_default.toStringTag : void 0;
1286
+ function baseGetTag(value) {
1287
+ if (value == null) {
1288
+ return value === void 0 ? undefinedTag : nullTag;
1289
+ }
1290
+ return symToStringTag2 && symToStringTag2 in Object(value) ? getRawTag_default(value) : objectToString_default(value);
1291
+ }
1292
+ __name(baseGetTag, "baseGetTag");
1293
+ var baseGetTag_default = baseGetTag;
1294
+
1295
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isObjectLike.js
1296
+ function isObjectLike(value) {
1297
+ return value != null && typeof value == "object";
1298
+ }
1299
+ __name(isObjectLike, "isObjectLike");
1300
+ var isObjectLike_default = isObjectLike;
1301
+
1302
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isSymbol.js
1303
+ var symbolTag = "[object Symbol]";
1304
+ function isSymbol(value) {
1305
+ return typeof value == "symbol" || isObjectLike_default(value) && baseGetTag_default(value) == symbolTag;
1306
+ }
1307
+ __name(isSymbol, "isSymbol");
1308
+ var isSymbol_default = isSymbol;
1309
+
1310
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_arrayMap.js
1311
+ function arrayMap(array, iteratee) {
1312
+ var index = -1, length = array == null ? 0 : array.length, result = Array(length);
1313
+ while (++index < length) {
1314
+ result[index] = iteratee(array[index], index, array);
1315
+ }
1316
+ return result;
1317
+ }
1318
+ __name(arrayMap, "arrayMap");
1319
+ var arrayMap_default = arrayMap;
1320
+
1321
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isArray.js
1322
+ var isArray = Array.isArray;
1323
+ var isArray_default = isArray;
1324
+
1325
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseToString.js
1326
+ var INFINITY = 1 / 0;
1327
+ var symbolProto = Symbol_default ? Symbol_default.prototype : void 0;
1328
+ var symbolToString = symbolProto ? symbolProto.toString : void 0;
1329
+ function baseToString(value) {
1330
+ if (typeof value == "string") {
1331
+ return value;
1332
+ }
1333
+ if (isArray_default(value)) {
1334
+ return arrayMap_default(value, baseToString) + "";
1335
+ }
1336
+ if (isSymbol_default(value)) {
1337
+ return symbolToString ? symbolToString.call(value) : "";
1338
+ }
1339
+ var result = value + "";
1340
+ return result == "0" && 1 / value == -INFINITY ? "-0" : result;
1341
+ }
1342
+ __name(baseToString, "baseToString");
1343
+ var baseToString_default = baseToString;
1344
+
1345
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isObject.js
1346
+ function isObject(value) {
1347
+ var type = typeof value;
1348
+ return value != null && (type == "object" || type == "function");
1349
+ }
1350
+ __name(isObject, "isObject");
1351
+ var isObject_default = isObject;
1352
+
1353
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/identity.js
1354
+ function identity(value) {
1355
+ return value;
1356
+ }
1357
+ __name(identity, "identity");
1358
+ var identity_default = identity;
1359
+
1360
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isFunction.js
1361
+ var asyncTag = "[object AsyncFunction]";
1362
+ var funcTag = "[object Function]";
1363
+ var genTag = "[object GeneratorFunction]";
1364
+ var proxyTag = "[object Proxy]";
1365
+ function isFunction(value) {
1366
+ if (!isObject_default(value)) {
1367
+ return false;
1368
+ }
1369
+ var tag = baseGetTag_default(value);
1370
+ return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
1371
+ }
1372
+ __name(isFunction, "isFunction");
1373
+ var isFunction_default = isFunction;
1374
+
1375
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_coreJsData.js
1376
+ var coreJsData = root_default["__core-js_shared__"];
1377
+ var coreJsData_default = coreJsData;
1378
+
1379
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_isMasked.js
1380
+ var maskSrcKey = function() {
1381
+ var uid = /[^.]+$/.exec(coreJsData_default && coreJsData_default.keys && coreJsData_default.keys.IE_PROTO || "");
1382
+ return uid ? "Symbol(src)_1." + uid : "";
1383
+ }();
1384
+ function isMasked(func) {
1385
+ return !!maskSrcKey && maskSrcKey in func;
1386
+ }
1387
+ __name(isMasked, "isMasked");
1388
+ var isMasked_default = isMasked;
1389
+
1390
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_toSource.js
1391
+ var funcProto = Function.prototype;
1392
+ var funcToString = funcProto.toString;
1393
+ function toSource(func) {
1394
+ if (func != null) {
1395
+ try {
1396
+ return funcToString.call(func);
1397
+ } catch (e) {
1398
+ }
1399
+ try {
1400
+ return func + "";
1401
+ } catch (e) {
1402
+ }
1403
+ }
1404
+ return "";
1405
+ }
1406
+ __name(toSource, "toSource");
1407
+ var toSource_default = toSource;
1408
+
1409
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseIsNative.js
1410
+ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
1411
+ var reIsHostCtor = /^\[object .+?Constructor\]$/;
1412
+ var funcProto2 = Function.prototype;
1413
+ var objectProto3 = Object.prototype;
1414
+ var funcToString2 = funcProto2.toString;
1415
+ var hasOwnProperty3 = objectProto3.hasOwnProperty;
1416
+ var reIsNative = RegExp("^" + funcToString2.call(hasOwnProperty3).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$");
1417
+ function baseIsNative(value) {
1418
+ if (!isObject_default(value) || isMasked_default(value)) {
1419
+ return false;
1420
+ }
1421
+ var pattern = isFunction_default(value) ? reIsNative : reIsHostCtor;
1422
+ return pattern.test(toSource_default(value));
1423
+ }
1424
+ __name(baseIsNative, "baseIsNative");
1425
+ var baseIsNative_default = baseIsNative;
1426
+
1427
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_getValue.js
1428
+ function getValue(object, key) {
1429
+ return object == null ? void 0 : object[key];
1430
+ }
1431
+ __name(getValue, "getValue");
1432
+ var getValue_default = getValue;
1433
+
1434
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_getNative.js
1435
+ function getNative(object, key) {
1436
+ var value = getValue_default(object, key);
1437
+ return baseIsNative_default(value) ? value : void 0;
1438
+ }
1439
+ __name(getNative, "getNative");
1440
+ var getNative_default = getNative;
1441
+
1442
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_WeakMap.js
1443
+ var WeakMap = getNative_default(root_default, "WeakMap");
1444
+ var WeakMap_default = WeakMap;
1445
+
1446
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseCreate.js
1447
+ var objectCreate = Object.create;
1448
+ var baseCreate = /* @__PURE__ */ function() {
1449
+ function object() {
1450
+ }
1451
+ __name(object, "object");
1452
+ return function(proto) {
1453
+ if (!isObject_default(proto)) {
1454
+ return {};
1455
+ }
1456
+ if (objectCreate) {
1457
+ return objectCreate(proto);
1458
+ }
1459
+ object.prototype = proto;
1460
+ var result = new object();
1461
+ object.prototype = void 0;
1462
+ return result;
1463
+ };
1464
+ }();
1465
+ var baseCreate_default = baseCreate;
1466
+
1467
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_apply.js
1468
+ function apply(func, thisArg, args) {
1469
+ switch (args.length) {
1470
+ case 0:
1471
+ return func.call(thisArg);
1472
+ case 1:
1473
+ return func.call(thisArg, args[0]);
1474
+ case 2:
1475
+ return func.call(thisArg, args[0], args[1]);
1476
+ case 3:
1477
+ return func.call(thisArg, args[0], args[1], args[2]);
1478
+ }
1479
+ return func.apply(thisArg, args);
1480
+ }
1481
+ __name(apply, "apply");
1482
+ var apply_default = apply;
1483
+
1484
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_copyArray.js
1485
+ function copyArray(source, array) {
1486
+ var index = -1, length = source.length;
1487
+ array || (array = Array(length));
1488
+ while (++index < length) {
1489
+ array[index] = source[index];
1490
+ }
1491
+ return array;
1492
+ }
1493
+ __name(copyArray, "copyArray");
1494
+ var copyArray_default = copyArray;
1495
+
1496
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_shortOut.js
1497
+ var HOT_COUNT = 800;
1498
+ var HOT_SPAN = 16;
1499
+ var nativeNow = Date.now;
1500
+ function shortOut(func) {
1501
+ var count = 0, lastCalled = 0;
1502
+ return function() {
1503
+ var stamp = nativeNow(), remaining = HOT_SPAN - (stamp - lastCalled);
1504
+ lastCalled = stamp;
1505
+ if (remaining > 0) {
1506
+ if (++count >= HOT_COUNT) {
1507
+ return arguments[0];
1508
+ }
1509
+ } else {
1510
+ count = 0;
1511
+ }
1512
+ return func.apply(void 0, arguments);
1513
+ };
1514
+ }
1515
+ __name(shortOut, "shortOut");
1516
+ var shortOut_default = shortOut;
1517
+
1518
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/constant.js
1519
+ function constant(value) {
1520
+ return function() {
1521
+ return value;
1522
+ };
1523
+ }
1524
+ __name(constant, "constant");
1525
+ var constant_default = constant;
1526
+
1527
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_defineProperty.js
1528
+ var defineProperty = function() {
1529
+ try {
1530
+ var func = getNative_default(Object, "defineProperty");
1531
+ func({}, "", {});
1532
+ return func;
1533
+ } catch (e) {
1534
+ }
1535
+ }();
1536
+ var defineProperty_default = defineProperty;
1537
+
1538
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseSetToString.js
1539
+ var baseSetToString = !defineProperty_default ? identity_default : function(func, string) {
1540
+ return defineProperty_default(func, "toString", {
1541
+ "configurable": true,
1542
+ "enumerable": false,
1543
+ "value": constant_default(string),
1544
+ "writable": true
1545
+ });
1546
+ };
1547
+ var baseSetToString_default = baseSetToString;
1548
+
1549
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_setToString.js
1550
+ var setToString = shortOut_default(baseSetToString_default);
1551
+ var setToString_default = setToString;
1552
+
1553
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_arrayEach.js
1554
+ function arrayEach(array, iteratee) {
1555
+ var index = -1, length = array == null ? 0 : array.length;
1556
+ while (++index < length) {
1557
+ if (iteratee(array[index], index, array) === false) {
1558
+ break;
1559
+ }
1560
+ }
1561
+ return array;
1562
+ }
1563
+ __name(arrayEach, "arrayEach");
1564
+ var arrayEach_default = arrayEach;
1565
+
1566
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_isIndex.js
1567
+ var MAX_SAFE_INTEGER = 9007199254740991;
1568
+ var reIsUint = /^(?:0|[1-9]\d*)$/;
1569
+ function isIndex(value, length) {
1570
+ var type = typeof value;
1571
+ length = length == null ? MAX_SAFE_INTEGER : length;
1572
+ return !!length && (type == "number" || type != "symbol" && reIsUint.test(value)) && value > -1 && value % 1 == 0 && value < length;
1573
+ }
1574
+ __name(isIndex, "isIndex");
1575
+ var isIndex_default = isIndex;
1576
+
1577
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseAssignValue.js
1578
+ function baseAssignValue(object, key, value) {
1579
+ if (key == "__proto__" && defineProperty_default) {
1580
+ defineProperty_default(object, key, {
1581
+ "configurable": true,
1582
+ "enumerable": true,
1583
+ "value": value,
1584
+ "writable": true
1585
+ });
1586
+ } else {
1587
+ object[key] = value;
1588
+ }
1589
+ }
1590
+ __name(baseAssignValue, "baseAssignValue");
1591
+ var baseAssignValue_default = baseAssignValue;
1592
+
1593
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/eq.js
1594
+ function eq(value, other) {
1595
+ return value === other || value !== value && other !== other;
1596
+ }
1597
+ __name(eq, "eq");
1598
+ var eq_default = eq;
1599
+
1600
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_assignValue.js
1601
+ var objectProto4 = Object.prototype;
1602
+ var hasOwnProperty4 = objectProto4.hasOwnProperty;
1603
+ function assignValue(object, key, value) {
1604
+ var objValue = object[key];
1605
+ if (!(hasOwnProperty4.call(object, key) && eq_default(objValue, value)) || value === void 0 && !(key in object)) {
1606
+ baseAssignValue_default(object, key, value);
1607
+ }
1608
+ }
1609
+ __name(assignValue, "assignValue");
1610
+ var assignValue_default = assignValue;
1611
+
1612
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_copyObject.js
1613
+ function copyObject(source, props, object, customizer) {
1614
+ var isNew = !object;
1615
+ object || (object = {});
1616
+ var index = -1, length = props.length;
1617
+ while (++index < length) {
1618
+ var key = props[index];
1619
+ var newValue = customizer ? customizer(object[key], source[key], key, object, source) : void 0;
1620
+ if (newValue === void 0) {
1621
+ newValue = source[key];
1622
+ }
1623
+ if (isNew) {
1624
+ baseAssignValue_default(object, key, newValue);
1625
+ } else {
1626
+ assignValue_default(object, key, newValue);
1627
+ }
1628
+ }
1629
+ return object;
1630
+ }
1631
+ __name(copyObject, "copyObject");
1632
+ var copyObject_default = copyObject;
1633
+
1634
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_overRest.js
1635
+ var nativeMax = Math.max;
1636
+ function overRest(func, start, transform) {
1637
+ start = nativeMax(start === void 0 ? func.length - 1 : start, 0);
1638
+ return function() {
1639
+ var args = arguments, index = -1, length = nativeMax(args.length - start, 0), array = Array(length);
1640
+ while (++index < length) {
1641
+ array[index] = args[start + index];
1642
+ }
1643
+ index = -1;
1644
+ var otherArgs = Array(start + 1);
1645
+ while (++index < start) {
1646
+ otherArgs[index] = args[index];
1647
+ }
1648
+ otherArgs[start] = transform(array);
1649
+ return apply_default(func, this, otherArgs);
1650
+ };
1651
+ }
1652
+ __name(overRest, "overRest");
1653
+ var overRest_default = overRest;
1654
+
1655
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isLength.js
1656
+ var MAX_SAFE_INTEGER2 = 9007199254740991;
1657
+ function isLength(value) {
1658
+ return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER2;
1659
+ }
1660
+ __name(isLength, "isLength");
1661
+ var isLength_default = isLength;
1662
+
1663
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isArrayLike.js
1664
+ function isArrayLike(value) {
1665
+ return value != null && isLength_default(value.length) && !isFunction_default(value);
1666
+ }
1667
+ __name(isArrayLike, "isArrayLike");
1668
+ var isArrayLike_default = isArrayLike;
1669
+
1670
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_isPrototype.js
1671
+ var objectProto5 = Object.prototype;
1672
+ function isPrototype(value) {
1673
+ var Ctor = value && value.constructor, proto = typeof Ctor == "function" && Ctor.prototype || objectProto5;
1674
+ return value === proto;
1675
+ }
1676
+ __name(isPrototype, "isPrototype");
1677
+ var isPrototype_default = isPrototype;
1678
+
1679
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseTimes.js
1680
+ function baseTimes(n, iteratee) {
1681
+ var index = -1, result = Array(n);
1682
+ while (++index < n) {
1683
+ result[index] = iteratee(index);
1684
+ }
1685
+ return result;
1686
+ }
1687
+ __name(baseTimes, "baseTimes");
1688
+ var baseTimes_default = baseTimes;
1689
+
1690
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseIsArguments.js
1691
+ var argsTag = "[object Arguments]";
1692
+ function baseIsArguments(value) {
1693
+ return isObjectLike_default(value) && baseGetTag_default(value) == argsTag;
1694
+ }
1695
+ __name(baseIsArguments, "baseIsArguments");
1696
+ var baseIsArguments_default = baseIsArguments;
1697
+
1698
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isArguments.js
1699
+ var objectProto6 = Object.prototype;
1700
+ var hasOwnProperty5 = objectProto6.hasOwnProperty;
1701
+ var propertyIsEnumerable = objectProto6.propertyIsEnumerable;
1702
+ var isArguments = baseIsArguments_default(/* @__PURE__ */ function() {
1703
+ return arguments;
1704
+ }()) ? baseIsArguments_default : function(value) {
1705
+ return isObjectLike_default(value) && hasOwnProperty5.call(value, "callee") && !propertyIsEnumerable.call(value, "callee");
1706
+ };
1707
+ var isArguments_default = isArguments;
1708
+
1709
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/stubFalse.js
1710
+ function stubFalse() {
1711
+ return false;
1712
+ }
1713
+ __name(stubFalse, "stubFalse");
1714
+ var stubFalse_default = stubFalse;
1715
+
1716
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isBuffer.js
1717
+ var freeExports = typeof exports == "object" && exports && !exports.nodeType && exports;
1718
+ var freeModule = freeExports && typeof module == "object" && module && !module.nodeType && module;
1719
+ var moduleExports = freeModule && freeModule.exports === freeExports;
1720
+ var Buffer2 = moduleExports ? root_default.Buffer : void 0;
1721
+ var nativeIsBuffer = Buffer2 ? Buffer2.isBuffer : void 0;
1722
+ var isBuffer = nativeIsBuffer || stubFalse_default;
1723
+ var isBuffer_default = isBuffer;
1724
+
1725
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseIsTypedArray.js
1726
+ var argsTag2 = "[object Arguments]";
1727
+ var arrayTag = "[object Array]";
1728
+ var boolTag = "[object Boolean]";
1729
+ var dateTag = "[object Date]";
1730
+ var errorTag = "[object Error]";
1731
+ var funcTag2 = "[object Function]";
1732
+ var mapTag = "[object Map]";
1733
+ var numberTag = "[object Number]";
1734
+ var objectTag = "[object Object]";
1735
+ var regexpTag = "[object RegExp]";
1736
+ var setTag = "[object Set]";
1737
+ var stringTag = "[object String]";
1738
+ var weakMapTag = "[object WeakMap]";
1739
+ var arrayBufferTag = "[object ArrayBuffer]";
1740
+ var dataViewTag = "[object DataView]";
1741
+ var float32Tag = "[object Float32Array]";
1742
+ var float64Tag = "[object Float64Array]";
1743
+ var int8Tag = "[object Int8Array]";
1744
+ var int16Tag = "[object Int16Array]";
1745
+ var int32Tag = "[object Int32Array]";
1746
+ var uint8Tag = "[object Uint8Array]";
1747
+ var uint8ClampedTag = "[object Uint8ClampedArray]";
1748
+ var uint16Tag = "[object Uint16Array]";
1749
+ var uint32Tag = "[object Uint32Array]";
1750
+ var typedArrayTags = {};
1751
+ typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true;
1752
+ 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;
1753
+ function baseIsTypedArray(value) {
1754
+ return isObjectLike_default(value) && isLength_default(value.length) && !!typedArrayTags[baseGetTag_default(value)];
1755
+ }
1756
+ __name(baseIsTypedArray, "baseIsTypedArray");
1757
+ var baseIsTypedArray_default = baseIsTypedArray;
1758
+
1759
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseUnary.js
1760
+ function baseUnary(func) {
1761
+ return function(value) {
1762
+ return func(value);
1763
+ };
1764
+ }
1765
+ __name(baseUnary, "baseUnary");
1766
+ var baseUnary_default = baseUnary;
1767
+
1768
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_nodeUtil.js
1769
+ var freeExports2 = typeof exports == "object" && exports && !exports.nodeType && exports;
1770
+ var freeModule2 = freeExports2 && typeof module == "object" && module && !module.nodeType && module;
1771
+ var moduleExports2 = freeModule2 && freeModule2.exports === freeExports2;
1772
+ var freeProcess = moduleExports2 && freeGlobal_default.process;
1773
+ var nodeUtil = function() {
1774
+ try {
1775
+ var types = freeModule2 && freeModule2.require && freeModule2.require("util").types;
1776
+ if (types) {
1777
+ return types;
1778
+ }
1779
+ return freeProcess && freeProcess.binding && freeProcess.binding("util");
1780
+ } catch (e) {
1781
+ }
1782
+ }();
1783
+ var nodeUtil_default = nodeUtil;
1784
+
1785
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isTypedArray.js
1786
+ var nodeIsTypedArray = nodeUtil_default && nodeUtil_default.isTypedArray;
1787
+ var isTypedArray = nodeIsTypedArray ? baseUnary_default(nodeIsTypedArray) : baseIsTypedArray_default;
1788
+ var isTypedArray_default = isTypedArray;
1789
+
1790
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_arrayLikeKeys.js
1791
+ var objectProto7 = Object.prototype;
1792
+ var hasOwnProperty6 = objectProto7.hasOwnProperty;
1793
+ function arrayLikeKeys(value, inherited) {
1794
+ 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;
1795
+ for (var key in value) {
1796
+ if ((inherited || hasOwnProperty6.call(value, key)) && !(skipIndexes && // Safari 9 has enumerable `arguments.length` in strict mode.
1797
+ (key == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
1798
+ isBuff && (key == "offset" || key == "parent") || // PhantomJS 2 has enumerable non-index properties on typed arrays.
1799
+ isType && (key == "buffer" || key == "byteLength" || key == "byteOffset") || // Skip index properties.
1800
+ isIndex_default(key, length)))) {
1801
+ result.push(key);
1802
+ }
1803
+ }
1804
+ return result;
1805
+ }
1806
+ __name(arrayLikeKeys, "arrayLikeKeys");
1807
+ var arrayLikeKeys_default = arrayLikeKeys;
1808
+
1809
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_overArg.js
1810
+ function overArg(func, transform) {
1811
+ return function(arg) {
1812
+ return func(transform(arg));
1813
+ };
1814
+ }
1815
+ __name(overArg, "overArg");
1816
+ var overArg_default = overArg;
1817
+
1818
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_nativeKeys.js
1819
+ var nativeKeys = overArg_default(Object.keys, Object);
1820
+ var nativeKeys_default = nativeKeys;
1821
+
1822
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseKeys.js
1823
+ var objectProto8 = Object.prototype;
1824
+ var hasOwnProperty7 = objectProto8.hasOwnProperty;
1825
+ function baseKeys(object) {
1826
+ if (!isPrototype_default(object)) {
1827
+ return nativeKeys_default(object);
1828
+ }
1829
+ var result = [];
1830
+ for (var key in Object(object)) {
1831
+ if (hasOwnProperty7.call(object, key) && key != "constructor") {
1832
+ result.push(key);
1833
+ }
1834
+ }
1835
+ return result;
1836
+ }
1837
+ __name(baseKeys, "baseKeys");
1838
+ var baseKeys_default = baseKeys;
1839
+
1840
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/keys.js
1841
+ function keys(object) {
1842
+ return isArrayLike_default(object) ? arrayLikeKeys_default(object) : baseKeys_default(object);
1843
+ }
1844
+ __name(keys, "keys");
1845
+ var keys_default = keys;
1846
+
1847
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_nativeKeysIn.js
1848
+ function nativeKeysIn(object) {
1849
+ var result = [];
1850
+ if (object != null) {
1851
+ for (var key in Object(object)) {
1852
+ result.push(key);
1853
+ }
1854
+ }
1855
+ return result;
1856
+ }
1857
+ __name(nativeKeysIn, "nativeKeysIn");
1858
+ var nativeKeysIn_default = nativeKeysIn;
1859
+
1860
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseKeysIn.js
1861
+ var objectProto9 = Object.prototype;
1862
+ var hasOwnProperty8 = objectProto9.hasOwnProperty;
1863
+ function baseKeysIn(object) {
1864
+ if (!isObject_default(object)) {
1865
+ return nativeKeysIn_default(object);
1866
+ }
1867
+ var isProto = isPrototype_default(object), result = [];
1868
+ for (var key in object) {
1869
+ if (!(key == "constructor" && (isProto || !hasOwnProperty8.call(object, key)))) {
1870
+ result.push(key);
1871
+ }
1872
+ }
1873
+ return result;
1874
+ }
1875
+ __name(baseKeysIn, "baseKeysIn");
1876
+ var baseKeysIn_default = baseKeysIn;
1877
+
1878
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/keysIn.js
1879
+ function keysIn(object) {
1880
+ return isArrayLike_default(object) ? arrayLikeKeys_default(object, true) : baseKeysIn_default(object);
1881
+ }
1882
+ __name(keysIn, "keysIn");
1883
+ var keysIn_default = keysIn;
1884
+
1885
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_isKey.js
1886
+ var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/;
1887
+ var reIsPlainProp = /^\w*$/;
1888
+ function isKey(value, object) {
1889
+ if (isArray_default(value)) {
1890
+ return false;
1891
+ }
1892
+ var type = typeof value;
1893
+ if (type == "number" || type == "symbol" || type == "boolean" || value == null || isSymbol_default(value)) {
1894
+ return true;
1895
+ }
1896
+ return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || object != null && value in Object(object);
1897
+ }
1898
+ __name(isKey, "isKey");
1899
+ var isKey_default = isKey;
1900
+
1901
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_nativeCreate.js
1902
+ var nativeCreate = getNative_default(Object, "create");
1903
+ var nativeCreate_default = nativeCreate;
1904
+
1905
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_hashClear.js
1906
+ function hashClear() {
1907
+ this.__data__ = nativeCreate_default ? nativeCreate_default(null) : {};
1908
+ this.size = 0;
1909
+ }
1910
+ __name(hashClear, "hashClear");
1911
+ var hashClear_default = hashClear;
1912
+
1913
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_hashDelete.js
1914
+ function hashDelete(key) {
1915
+ var result = this.has(key) && delete this.__data__[key];
1916
+ this.size -= result ? 1 : 0;
1917
+ return result;
1918
+ }
1919
+ __name(hashDelete, "hashDelete");
1920
+ var hashDelete_default = hashDelete;
1921
+
1922
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_hashGet.js
1923
+ var HASH_UNDEFINED = "__lodash_hash_undefined__";
1924
+ var objectProto10 = Object.prototype;
1925
+ var hasOwnProperty9 = objectProto10.hasOwnProperty;
1926
+ function hashGet(key) {
1927
+ var data = this.__data__;
1928
+ if (nativeCreate_default) {
1929
+ var result = data[key];
1930
+ return result === HASH_UNDEFINED ? void 0 : result;
1931
+ }
1932
+ return hasOwnProperty9.call(data, key) ? data[key] : void 0;
1933
+ }
1934
+ __name(hashGet, "hashGet");
1935
+ var hashGet_default = hashGet;
1936
+
1937
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_hashHas.js
1938
+ var objectProto11 = Object.prototype;
1939
+ var hasOwnProperty10 = objectProto11.hasOwnProperty;
1940
+ function hashHas(key) {
1941
+ var data = this.__data__;
1942
+ return nativeCreate_default ? data[key] !== void 0 : hasOwnProperty10.call(data, key);
1943
+ }
1944
+ __name(hashHas, "hashHas");
1945
+ var hashHas_default = hashHas;
1946
+
1947
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_hashSet.js
1948
+ var HASH_UNDEFINED2 = "__lodash_hash_undefined__";
1949
+ function hashSet(key, value) {
1950
+ var data = this.__data__;
1951
+ this.size += this.has(key) ? 0 : 1;
1952
+ data[key] = nativeCreate_default && value === void 0 ? HASH_UNDEFINED2 : value;
1953
+ return this;
1954
+ }
1955
+ __name(hashSet, "hashSet");
1956
+ var hashSet_default = hashSet;
1957
+
1958
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_Hash.js
1959
+ function Hash(entries) {
1960
+ var index = -1, length = entries == null ? 0 : entries.length;
1961
+ this.clear();
1962
+ while (++index < length) {
1963
+ var entry = entries[index];
1964
+ this.set(entry[0], entry[1]);
1965
+ }
1966
+ }
1967
+ __name(Hash, "Hash");
1968
+ Hash.prototype.clear = hashClear_default;
1969
+ Hash.prototype["delete"] = hashDelete_default;
1970
+ Hash.prototype.get = hashGet_default;
1971
+ Hash.prototype.has = hashHas_default;
1972
+ Hash.prototype.set = hashSet_default;
1973
+ var Hash_default = Hash;
1974
+
1975
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_listCacheClear.js
1976
+ function listCacheClear() {
1977
+ this.__data__ = [];
1978
+ this.size = 0;
1979
+ }
1980
+ __name(listCacheClear, "listCacheClear");
1981
+ var listCacheClear_default = listCacheClear;
1982
+
1983
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_assocIndexOf.js
1984
+ function assocIndexOf(array, key) {
1985
+ var length = array.length;
1986
+ while (length--) {
1987
+ if (eq_default(array[length][0], key)) {
1988
+ return length;
1989
+ }
1990
+ }
1991
+ return -1;
1992
+ }
1993
+ __name(assocIndexOf, "assocIndexOf");
1994
+ var assocIndexOf_default = assocIndexOf;
1995
+
1996
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_listCacheDelete.js
1997
+ var arrayProto = Array.prototype;
1998
+ var splice = arrayProto.splice;
1999
+ function listCacheDelete(key) {
2000
+ var data = this.__data__, index = assocIndexOf_default(data, key);
2001
+ if (index < 0) {
2002
+ return false;
2003
+ }
2004
+ var lastIndex = data.length - 1;
2005
+ if (index == lastIndex) {
2006
+ data.pop();
2007
+ } else {
2008
+ splice.call(data, index, 1);
2009
+ }
2010
+ --this.size;
2011
+ return true;
2012
+ }
2013
+ __name(listCacheDelete, "listCacheDelete");
2014
+ var listCacheDelete_default = listCacheDelete;
2015
+
2016
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_listCacheGet.js
2017
+ function listCacheGet(key) {
2018
+ var data = this.__data__, index = assocIndexOf_default(data, key);
2019
+ return index < 0 ? void 0 : data[index][1];
2020
+ }
2021
+ __name(listCacheGet, "listCacheGet");
2022
+ var listCacheGet_default = listCacheGet;
2023
+
2024
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_listCacheHas.js
2025
+ function listCacheHas(key) {
2026
+ return assocIndexOf_default(this.__data__, key) > -1;
2027
+ }
2028
+ __name(listCacheHas, "listCacheHas");
2029
+ var listCacheHas_default = listCacheHas;
2030
+
2031
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_listCacheSet.js
2032
+ function listCacheSet(key, value) {
2033
+ var data = this.__data__, index = assocIndexOf_default(data, key);
2034
+ if (index < 0) {
2035
+ ++this.size;
2036
+ data.push([
2037
+ key,
2038
+ value
2039
+ ]);
2040
+ } else {
2041
+ data[index][1] = value;
2042
+ }
2043
+ return this;
2044
+ }
2045
+ __name(listCacheSet, "listCacheSet");
2046
+ var listCacheSet_default = listCacheSet;
2047
+
2048
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_ListCache.js
2049
+ function ListCache(entries) {
2050
+ var index = -1, length = entries == null ? 0 : entries.length;
2051
+ this.clear();
2052
+ while (++index < length) {
2053
+ var entry = entries[index];
2054
+ this.set(entry[0], entry[1]);
2055
+ }
2056
+ }
2057
+ __name(ListCache, "ListCache");
2058
+ ListCache.prototype.clear = listCacheClear_default;
2059
+ ListCache.prototype["delete"] = listCacheDelete_default;
2060
+ ListCache.prototype.get = listCacheGet_default;
2061
+ ListCache.prototype.has = listCacheHas_default;
2062
+ ListCache.prototype.set = listCacheSet_default;
2063
+ var ListCache_default = ListCache;
2064
+
2065
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_Map.js
2066
+ var Map = getNative_default(root_default, "Map");
2067
+ var Map_default = Map;
2068
+
2069
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_mapCacheClear.js
2070
+ function mapCacheClear() {
2071
+ this.size = 0;
2072
+ this.__data__ = {
2073
+ "hash": new Hash_default(),
2074
+ "map": new (Map_default || ListCache_default)(),
2075
+ "string": new Hash_default()
2076
+ };
2077
+ }
2078
+ __name(mapCacheClear, "mapCacheClear");
2079
+ var mapCacheClear_default = mapCacheClear;
2080
+
2081
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_isKeyable.js
2082
+ function isKeyable(value) {
2083
+ var type = typeof value;
2084
+ return type == "string" || type == "number" || type == "symbol" || type == "boolean" ? value !== "__proto__" : value === null;
2085
+ }
2086
+ __name(isKeyable, "isKeyable");
2087
+ var isKeyable_default = isKeyable;
2088
+
2089
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_getMapData.js
2090
+ function getMapData(map, key) {
2091
+ var data = map.__data__;
2092
+ return isKeyable_default(key) ? data[typeof key == "string" ? "string" : "hash"] : data.map;
2093
+ }
2094
+ __name(getMapData, "getMapData");
2095
+ var getMapData_default = getMapData;
2096
+
2097
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_mapCacheDelete.js
2098
+ function mapCacheDelete(key) {
2099
+ var result = getMapData_default(this, key)["delete"](key);
2100
+ this.size -= result ? 1 : 0;
2101
+ return result;
2102
+ }
2103
+ __name(mapCacheDelete, "mapCacheDelete");
2104
+ var mapCacheDelete_default = mapCacheDelete;
2105
+
2106
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_mapCacheGet.js
2107
+ function mapCacheGet(key) {
2108
+ return getMapData_default(this, key).get(key);
2109
+ }
2110
+ __name(mapCacheGet, "mapCacheGet");
2111
+ var mapCacheGet_default = mapCacheGet;
2112
+
2113
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_mapCacheHas.js
2114
+ function mapCacheHas(key) {
2115
+ return getMapData_default(this, key).has(key);
2116
+ }
2117
+ __name(mapCacheHas, "mapCacheHas");
2118
+ var mapCacheHas_default = mapCacheHas;
2119
+
2120
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_mapCacheSet.js
2121
+ function mapCacheSet(key, value) {
2122
+ var data = getMapData_default(this, key), size = data.size;
2123
+ data.set(key, value);
2124
+ this.size += data.size == size ? 0 : 1;
2125
+ return this;
2126
+ }
2127
+ __name(mapCacheSet, "mapCacheSet");
2128
+ var mapCacheSet_default = mapCacheSet;
2129
+
2130
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_MapCache.js
2131
+ function MapCache(entries) {
2132
+ var index = -1, length = entries == null ? 0 : entries.length;
2133
+ this.clear();
2134
+ while (++index < length) {
2135
+ var entry = entries[index];
2136
+ this.set(entry[0], entry[1]);
2137
+ }
2138
+ }
2139
+ __name(MapCache, "MapCache");
2140
+ MapCache.prototype.clear = mapCacheClear_default;
2141
+ MapCache.prototype["delete"] = mapCacheDelete_default;
2142
+ MapCache.prototype.get = mapCacheGet_default;
2143
+ MapCache.prototype.has = mapCacheHas_default;
2144
+ MapCache.prototype.set = mapCacheSet_default;
2145
+ var MapCache_default = MapCache;
2146
+
2147
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/memoize.js
2148
+ var FUNC_ERROR_TEXT = "Expected a function";
2149
+ function memoize(func, resolver) {
2150
+ if (typeof func != "function" || resolver != null && typeof resolver != "function") {
2151
+ throw new TypeError(FUNC_ERROR_TEXT);
2152
+ }
2153
+ var memoized = /* @__PURE__ */ __name(function() {
2154
+ var args = arguments, key = resolver ? resolver.apply(this, args) : args[0], cache = memoized.cache;
2155
+ if (cache.has(key)) {
2156
+ return cache.get(key);
2157
+ }
2158
+ var result = func.apply(this, args);
2159
+ memoized.cache = cache.set(key, result) || cache;
2160
+ return result;
2161
+ }, "memoized");
2162
+ memoized.cache = new (memoize.Cache || MapCache_default)();
2163
+ return memoized;
2164
+ }
2165
+ __name(memoize, "memoize");
2166
+ memoize.Cache = MapCache_default;
2167
+ var memoize_default = memoize;
2168
+
2169
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_memoizeCapped.js
2170
+ var MAX_MEMOIZE_SIZE = 500;
2171
+ function memoizeCapped(func) {
2172
+ var result = memoize_default(func, function(key) {
2173
+ if (cache.size === MAX_MEMOIZE_SIZE) {
2174
+ cache.clear();
2175
+ }
2176
+ return key;
2177
+ });
2178
+ var cache = result.cache;
2179
+ return result;
2180
+ }
2181
+ __name(memoizeCapped, "memoizeCapped");
2182
+ var memoizeCapped_default = memoizeCapped;
2183
+
2184
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_stringToPath.js
2185
+ var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g;
2186
+ var reEscapeChar = /\\(\\)?/g;
2187
+ var stringToPath = memoizeCapped_default(function(string) {
2188
+ var result = [];
2189
+ if (string.charCodeAt(0) === 46) {
2190
+ result.push("");
2191
+ }
2192
+ string.replace(rePropName, function(match, number, quote, subString) {
2193
+ result.push(quote ? subString.replace(reEscapeChar, "$1") : number || match);
2194
+ });
2195
+ return result;
2196
+ });
2197
+ var stringToPath_default = stringToPath;
2198
+
2199
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/toString.js
2200
+ function toString(value) {
2201
+ return value == null ? "" : baseToString_default(value);
2202
+ }
2203
+ __name(toString, "toString");
2204
+ var toString_default = toString;
2205
+
2206
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_castPath.js
2207
+ function castPath(value, object) {
2208
+ if (isArray_default(value)) {
2209
+ return value;
2210
+ }
2211
+ return isKey_default(value, object) ? [
2212
+ value
2213
+ ] : stringToPath_default(toString_default(value));
2214
+ }
2215
+ __name(castPath, "castPath");
2216
+ var castPath_default = castPath;
2217
+
2218
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_toKey.js
2219
+ var INFINITY2 = 1 / 0;
2220
+ function toKey(value) {
2221
+ if (typeof value == "string" || isSymbol_default(value)) {
2222
+ return value;
2223
+ }
2224
+ var result = value + "";
2225
+ return result == "0" && 1 / value == -INFINITY2 ? "-0" : result;
2226
+ }
2227
+ __name(toKey, "toKey");
2228
+ var toKey_default = toKey;
2229
+
2230
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseGet.js
2231
+ function baseGet(object, path) {
2232
+ path = castPath_default(path, object);
2233
+ var index = 0, length = path.length;
2234
+ while (object != null && index < length) {
2235
+ object = object[toKey_default(path[index++])];
2236
+ }
2237
+ return index && index == length ? object : void 0;
2238
+ }
2239
+ __name(baseGet, "baseGet");
2240
+ var baseGet_default = baseGet;
2241
+
2242
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_arrayPush.js
2243
+ function arrayPush(array, values) {
2244
+ var index = -1, length = values.length, offset = array.length;
2245
+ while (++index < length) {
2246
+ array[offset + index] = values[index];
2247
+ }
2248
+ return array;
2249
+ }
2250
+ __name(arrayPush, "arrayPush");
2251
+ var arrayPush_default = arrayPush;
2252
+
2253
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_isFlattenable.js
2254
+ var spreadableSymbol = Symbol_default ? Symbol_default.isConcatSpreadable : void 0;
2255
+ function isFlattenable(value) {
2256
+ return isArray_default(value) || isArguments_default(value) || !!(spreadableSymbol && value && value[spreadableSymbol]);
2257
+ }
2258
+ __name(isFlattenable, "isFlattenable");
2259
+ var isFlattenable_default = isFlattenable;
2260
+
2261
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseFlatten.js
2262
+ function baseFlatten(array, depth, predicate, isStrict, result) {
2263
+ var index = -1, length = array.length;
2264
+ predicate || (predicate = isFlattenable_default);
2265
+ result || (result = []);
2266
+ while (++index < length) {
2267
+ var value = array[index];
2268
+ if (depth > 0 && predicate(value)) {
2269
+ if (depth > 1) {
2270
+ baseFlatten(value, depth - 1, predicate, isStrict, result);
2271
+ } else {
2272
+ arrayPush_default(result, value);
2273
+ }
2274
+ } else if (!isStrict) {
2275
+ result[result.length] = value;
2276
+ }
2277
+ }
2278
+ return result;
2279
+ }
2280
+ __name(baseFlatten, "baseFlatten");
2281
+ var baseFlatten_default = baseFlatten;
2282
+
2283
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/flatten.js
2284
+ function flatten(array) {
2285
+ var length = array == null ? 0 : array.length;
2286
+ return length ? baseFlatten_default(array, 1) : [];
2287
+ }
2288
+ __name(flatten, "flatten");
2289
+ var flatten_default = flatten;
2290
+
2291
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_flatRest.js
2292
+ function flatRest(func) {
2293
+ return setToString_default(overRest_default(func, void 0, flatten_default), func + "");
2294
+ }
2295
+ __name(flatRest, "flatRest");
2296
+ var flatRest_default = flatRest;
2297
+
2298
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_getPrototype.js
2299
+ var getPrototype = overArg_default(Object.getPrototypeOf, Object);
2300
+ var getPrototype_default = getPrototype;
2301
+
2302
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isPlainObject.js
2303
+ var objectTag2 = "[object Object]";
2304
+ var funcProto3 = Function.prototype;
2305
+ var objectProto12 = Object.prototype;
2306
+ var funcToString3 = funcProto3.toString;
2307
+ var hasOwnProperty11 = objectProto12.hasOwnProperty;
2308
+ var objectCtorString = funcToString3.call(Object);
2309
+ function isPlainObject(value) {
2310
+ if (!isObjectLike_default(value) || baseGetTag_default(value) != objectTag2) {
2311
+ return false;
2312
+ }
2313
+ var proto = getPrototype_default(value);
2314
+ if (proto === null) {
2315
+ return true;
2316
+ }
2317
+ var Ctor = hasOwnProperty11.call(proto, "constructor") && proto.constructor;
2318
+ return typeof Ctor == "function" && Ctor instanceof Ctor && funcToString3.call(Ctor) == objectCtorString;
2319
+ }
2320
+ __name(isPlainObject, "isPlainObject");
2321
+ var isPlainObject_default = isPlainObject;
2322
+
2323
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseSlice.js
2324
+ function baseSlice(array, start, end) {
2325
+ var index = -1, length = array.length;
2326
+ if (start < 0) {
2327
+ start = -start > length ? 0 : length + start;
2328
+ }
2329
+ end = end > length ? length : end;
2330
+ if (end < 0) {
2331
+ end += length;
2332
+ }
2333
+ length = start > end ? 0 : end - start >>> 0;
2334
+ start >>>= 0;
2335
+ var result = Array(length);
2336
+ while (++index < length) {
2337
+ result[index] = array[index + start];
2338
+ }
2339
+ return result;
2340
+ }
2341
+ __name(baseSlice, "baseSlice");
2342
+ var baseSlice_default = baseSlice;
2343
+
2344
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_stackClear.js
2345
+ function stackClear() {
2346
+ this.__data__ = new ListCache_default();
2347
+ this.size = 0;
2348
+ }
2349
+ __name(stackClear, "stackClear");
2350
+ var stackClear_default = stackClear;
2351
+
2352
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_stackDelete.js
2353
+ function stackDelete(key) {
2354
+ var data = this.__data__, result = data["delete"](key);
2355
+ this.size = data.size;
2356
+ return result;
2357
+ }
2358
+ __name(stackDelete, "stackDelete");
2359
+ var stackDelete_default = stackDelete;
2360
+
2361
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_stackGet.js
2362
+ function stackGet(key) {
2363
+ return this.__data__.get(key);
2364
+ }
2365
+ __name(stackGet, "stackGet");
2366
+ var stackGet_default = stackGet;
2367
+
2368
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_stackHas.js
2369
+ function stackHas(key) {
2370
+ return this.__data__.has(key);
2371
+ }
2372
+ __name(stackHas, "stackHas");
2373
+ var stackHas_default = stackHas;
2374
+
2375
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_stackSet.js
2376
+ var LARGE_ARRAY_SIZE = 200;
2377
+ function stackSet(key, value) {
2378
+ var data = this.__data__;
2379
+ if (data instanceof ListCache_default) {
2380
+ var pairs = data.__data__;
2381
+ if (!Map_default || pairs.length < LARGE_ARRAY_SIZE - 1) {
2382
+ pairs.push([
2383
+ key,
2384
+ value
2385
+ ]);
2386
+ this.size = ++data.size;
2387
+ return this;
2388
+ }
2389
+ data = this.__data__ = new MapCache_default(pairs);
2390
+ }
2391
+ data.set(key, value);
2392
+ this.size = data.size;
2393
+ return this;
2394
+ }
2395
+ __name(stackSet, "stackSet");
2396
+ var stackSet_default = stackSet;
2397
+
2398
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_Stack.js
2399
+ function Stack(entries) {
2400
+ var data = this.__data__ = new ListCache_default(entries);
2401
+ this.size = data.size;
2402
+ }
2403
+ __name(Stack, "Stack");
2404
+ Stack.prototype.clear = stackClear_default;
2405
+ Stack.prototype["delete"] = stackDelete_default;
2406
+ Stack.prototype.get = stackGet_default;
2407
+ Stack.prototype.has = stackHas_default;
2408
+ Stack.prototype.set = stackSet_default;
2409
+ var Stack_default = Stack;
2410
+
2411
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseAssign.js
2412
+ function baseAssign(object, source) {
2413
+ return object && copyObject_default(source, keys_default(source), object);
2414
+ }
2415
+ __name(baseAssign, "baseAssign");
2416
+ var baseAssign_default = baseAssign;
2417
+
2418
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseAssignIn.js
2419
+ function baseAssignIn(object, source) {
2420
+ return object && copyObject_default(source, keysIn_default(source), object);
2421
+ }
2422
+ __name(baseAssignIn, "baseAssignIn");
2423
+ var baseAssignIn_default = baseAssignIn;
2424
+
2425
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_cloneBuffer.js
2426
+ var freeExports3 = typeof exports == "object" && exports && !exports.nodeType && exports;
2427
+ var freeModule3 = freeExports3 && typeof module == "object" && module && !module.nodeType && module;
2428
+ var moduleExports3 = freeModule3 && freeModule3.exports === freeExports3;
2429
+ var Buffer3 = moduleExports3 ? root_default.Buffer : void 0;
2430
+ var allocUnsafe = Buffer3 ? Buffer3.allocUnsafe : void 0;
2431
+ function cloneBuffer(buffer, isDeep) {
2432
+ if (isDeep) {
2433
+ return buffer.slice();
2434
+ }
2435
+ var length = buffer.length, result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
2436
+ buffer.copy(result);
2437
+ return result;
2438
+ }
2439
+ __name(cloneBuffer, "cloneBuffer");
2440
+ var cloneBuffer_default = cloneBuffer;
2441
+
2442
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_arrayFilter.js
2443
+ function arrayFilter(array, predicate) {
2444
+ var index = -1, length = array == null ? 0 : array.length, resIndex = 0, result = [];
2445
+ while (++index < length) {
2446
+ var value = array[index];
2447
+ if (predicate(value, index, array)) {
2448
+ result[resIndex++] = value;
2449
+ }
2450
+ }
2451
+ return result;
2452
+ }
2453
+ __name(arrayFilter, "arrayFilter");
2454
+ var arrayFilter_default = arrayFilter;
2455
+
2456
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/stubArray.js
2457
+ function stubArray() {
2458
+ return [];
2459
+ }
2460
+ __name(stubArray, "stubArray");
2461
+ var stubArray_default = stubArray;
2462
+
2463
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_getSymbols.js
2464
+ var objectProto13 = Object.prototype;
2465
+ var propertyIsEnumerable2 = objectProto13.propertyIsEnumerable;
2466
+ var nativeGetSymbols = Object.getOwnPropertySymbols;
2467
+ var getSymbols = !nativeGetSymbols ? stubArray_default : function(object) {
2468
+ if (object == null) {
2469
+ return [];
2470
+ }
2471
+ object = Object(object);
2472
+ return arrayFilter_default(nativeGetSymbols(object), function(symbol) {
2473
+ return propertyIsEnumerable2.call(object, symbol);
2474
+ });
2475
+ };
2476
+ var getSymbols_default = getSymbols;
2477
+
2478
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_copySymbols.js
2479
+ function copySymbols(source, object) {
2480
+ return copyObject_default(source, getSymbols_default(source), object);
2481
+ }
2482
+ __name(copySymbols, "copySymbols");
2483
+ var copySymbols_default = copySymbols;
2484
+
2485
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_getSymbolsIn.js
2486
+ var nativeGetSymbols2 = Object.getOwnPropertySymbols;
2487
+ var getSymbolsIn = !nativeGetSymbols2 ? stubArray_default : function(object) {
2488
+ var result = [];
2489
+ while (object) {
2490
+ arrayPush_default(result, getSymbols_default(object));
2491
+ object = getPrototype_default(object);
2492
+ }
2493
+ return result;
2494
+ };
2495
+ var getSymbolsIn_default = getSymbolsIn;
2496
+
2497
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_copySymbolsIn.js
2498
+ function copySymbolsIn(source, object) {
2499
+ return copyObject_default(source, getSymbolsIn_default(source), object);
2500
+ }
2501
+ __name(copySymbolsIn, "copySymbolsIn");
2502
+ var copySymbolsIn_default = copySymbolsIn;
2503
+
2504
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseGetAllKeys.js
2505
+ function baseGetAllKeys(object, keysFunc, symbolsFunc) {
2506
+ var result = keysFunc(object);
2507
+ return isArray_default(object) ? result : arrayPush_default(result, symbolsFunc(object));
2508
+ }
2509
+ __name(baseGetAllKeys, "baseGetAllKeys");
2510
+ var baseGetAllKeys_default = baseGetAllKeys;
2511
+
2512
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_getAllKeys.js
2513
+ function getAllKeys(object) {
2514
+ return baseGetAllKeys_default(object, keys_default, getSymbols_default);
2515
+ }
2516
+ __name(getAllKeys, "getAllKeys");
2517
+ var getAllKeys_default = getAllKeys;
2518
+
2519
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_getAllKeysIn.js
2520
+ function getAllKeysIn(object) {
2521
+ return baseGetAllKeys_default(object, keysIn_default, getSymbolsIn_default);
2522
+ }
2523
+ __name(getAllKeysIn, "getAllKeysIn");
2524
+ var getAllKeysIn_default = getAllKeysIn;
2525
+
2526
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_DataView.js
2527
+ var DataView = getNative_default(root_default, "DataView");
2528
+ var DataView_default = DataView;
2529
+
2530
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_Promise.js
2531
+ var Promise2 = getNative_default(root_default, "Promise");
2532
+ var Promise_default = Promise2;
2533
+
2534
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_Set.js
2535
+ var Set = getNative_default(root_default, "Set");
2536
+ var Set_default = Set;
2537
+
2538
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_getTag.js
2539
+ var mapTag2 = "[object Map]";
2540
+ var objectTag3 = "[object Object]";
2541
+ var promiseTag = "[object Promise]";
2542
+ var setTag2 = "[object Set]";
2543
+ var weakMapTag2 = "[object WeakMap]";
2544
+ var dataViewTag2 = "[object DataView]";
2545
+ var dataViewCtorString = toSource_default(DataView_default);
2546
+ var mapCtorString = toSource_default(Map_default);
2547
+ var promiseCtorString = toSource_default(Promise_default);
2548
+ var setCtorString = toSource_default(Set_default);
2549
+ var weakMapCtorString = toSource_default(WeakMap_default);
2550
+ var getTag = baseGetTag_default;
2551
+ if (DataView_default && getTag(new DataView_default(new ArrayBuffer(1))) != dataViewTag2 || Map_default && getTag(new Map_default()) != mapTag2 || Promise_default && getTag(Promise_default.resolve()) != promiseTag || Set_default && getTag(new Set_default()) != setTag2 || WeakMap_default && getTag(new WeakMap_default()) != weakMapTag2) {
2552
+ getTag = /* @__PURE__ */ __name(function(value) {
2553
+ var result = baseGetTag_default(value), Ctor = result == objectTag3 ? value.constructor : void 0, ctorString = Ctor ? toSource_default(Ctor) : "";
2554
+ if (ctorString) {
2555
+ switch (ctorString) {
2556
+ case dataViewCtorString:
2557
+ return dataViewTag2;
2558
+ case mapCtorString:
2559
+ return mapTag2;
2560
+ case promiseCtorString:
2561
+ return promiseTag;
2562
+ case setCtorString:
2563
+ return setTag2;
2564
+ case weakMapCtorString:
2565
+ return weakMapTag2;
2566
+ }
2567
+ }
2568
+ return result;
2569
+ }, "getTag");
2570
+ }
2571
+ var getTag_default = getTag;
2572
+
2573
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_initCloneArray.js
2574
+ var objectProto14 = Object.prototype;
2575
+ var hasOwnProperty12 = objectProto14.hasOwnProperty;
2576
+ function initCloneArray(array) {
2577
+ var length = array.length, result = new array.constructor(length);
2578
+ if (length && typeof array[0] == "string" && hasOwnProperty12.call(array, "index")) {
2579
+ result.index = array.index;
2580
+ result.input = array.input;
2581
+ }
2582
+ return result;
2583
+ }
2584
+ __name(initCloneArray, "initCloneArray");
2585
+ var initCloneArray_default = initCloneArray;
2586
+
2587
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_Uint8Array.js
2588
+ var Uint8Array2 = root_default.Uint8Array;
2589
+ var Uint8Array_default = Uint8Array2;
2590
+
2591
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_cloneArrayBuffer.js
2592
+ function cloneArrayBuffer(arrayBuffer) {
2593
+ var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
2594
+ new Uint8Array_default(result).set(new Uint8Array_default(arrayBuffer));
2595
+ return result;
2596
+ }
2597
+ __name(cloneArrayBuffer, "cloneArrayBuffer");
2598
+ var cloneArrayBuffer_default = cloneArrayBuffer;
2599
+
2600
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_cloneDataView.js
2601
+ function cloneDataView(dataView, isDeep) {
2602
+ var buffer = isDeep ? cloneArrayBuffer_default(dataView.buffer) : dataView.buffer;
2603
+ return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);
2604
+ }
2605
+ __name(cloneDataView, "cloneDataView");
2606
+ var cloneDataView_default = cloneDataView;
2607
+
2608
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_cloneRegExp.js
2609
+ var reFlags = /\w*$/;
2610
+ function cloneRegExp(regexp) {
2611
+ var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));
2612
+ result.lastIndex = regexp.lastIndex;
2613
+ return result;
2614
+ }
2615
+ __name(cloneRegExp, "cloneRegExp");
2616
+ var cloneRegExp_default = cloneRegExp;
2617
+
2618
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_cloneSymbol.js
2619
+ var symbolProto2 = Symbol_default ? Symbol_default.prototype : void 0;
2620
+ var symbolValueOf = symbolProto2 ? symbolProto2.valueOf : void 0;
2621
+ function cloneSymbol(symbol) {
2622
+ return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};
2623
+ }
2624
+ __name(cloneSymbol, "cloneSymbol");
2625
+ var cloneSymbol_default = cloneSymbol;
2626
+
2627
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_cloneTypedArray.js
2628
+ function cloneTypedArray(typedArray, isDeep) {
2629
+ var buffer = isDeep ? cloneArrayBuffer_default(typedArray.buffer) : typedArray.buffer;
2630
+ return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);
2631
+ }
2632
+ __name(cloneTypedArray, "cloneTypedArray");
2633
+ var cloneTypedArray_default = cloneTypedArray;
2634
+
2635
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_initCloneByTag.js
2636
+ var boolTag2 = "[object Boolean]";
2637
+ var dateTag2 = "[object Date]";
2638
+ var mapTag3 = "[object Map]";
2639
+ var numberTag2 = "[object Number]";
2640
+ var regexpTag2 = "[object RegExp]";
2641
+ var setTag3 = "[object Set]";
2642
+ var stringTag2 = "[object String]";
2643
+ var symbolTag2 = "[object Symbol]";
2644
+ var arrayBufferTag2 = "[object ArrayBuffer]";
2645
+ var dataViewTag3 = "[object DataView]";
2646
+ var float32Tag2 = "[object Float32Array]";
2647
+ var float64Tag2 = "[object Float64Array]";
2648
+ var int8Tag2 = "[object Int8Array]";
2649
+ var int16Tag2 = "[object Int16Array]";
2650
+ var int32Tag2 = "[object Int32Array]";
2651
+ var uint8Tag2 = "[object Uint8Array]";
2652
+ var uint8ClampedTag2 = "[object Uint8ClampedArray]";
2653
+ var uint16Tag2 = "[object Uint16Array]";
2654
+ var uint32Tag2 = "[object Uint32Array]";
2655
+ function initCloneByTag(object, tag, isDeep) {
2656
+ var Ctor = object.constructor;
2657
+ switch (tag) {
2658
+ case arrayBufferTag2:
2659
+ return cloneArrayBuffer_default(object);
2660
+ case boolTag2:
2661
+ case dateTag2:
2662
+ return new Ctor(+object);
2663
+ case dataViewTag3:
2664
+ return cloneDataView_default(object, isDeep);
2665
+ case float32Tag2:
2666
+ case float64Tag2:
2667
+ case int8Tag2:
2668
+ case int16Tag2:
2669
+ case int32Tag2:
2670
+ case uint8Tag2:
2671
+ case uint8ClampedTag2:
2672
+ case uint16Tag2:
2673
+ case uint32Tag2:
2674
+ return cloneTypedArray_default(object, isDeep);
2675
+ case mapTag3:
2676
+ return new Ctor();
2677
+ case numberTag2:
2678
+ case stringTag2:
2679
+ return new Ctor(object);
2680
+ case regexpTag2:
2681
+ return cloneRegExp_default(object);
2682
+ case setTag3:
2683
+ return new Ctor();
2684
+ case symbolTag2:
2685
+ return cloneSymbol_default(object);
2686
+ }
2687
+ }
2688
+ __name(initCloneByTag, "initCloneByTag");
2689
+ var initCloneByTag_default = initCloneByTag;
2690
+
2691
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_initCloneObject.js
2692
+ function initCloneObject(object) {
2693
+ return typeof object.constructor == "function" && !isPrototype_default(object) ? baseCreate_default(getPrototype_default(object)) : {};
2694
+ }
2695
+ __name(initCloneObject, "initCloneObject");
2696
+ var initCloneObject_default = initCloneObject;
2697
+
2698
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseIsMap.js
2699
+ var mapTag4 = "[object Map]";
2700
+ function baseIsMap(value) {
2701
+ return isObjectLike_default(value) && getTag_default(value) == mapTag4;
2702
+ }
2703
+ __name(baseIsMap, "baseIsMap");
2704
+ var baseIsMap_default = baseIsMap;
2705
+
2706
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isMap.js
2707
+ var nodeIsMap = nodeUtil_default && nodeUtil_default.isMap;
2708
+ var isMap = nodeIsMap ? baseUnary_default(nodeIsMap) : baseIsMap_default;
2709
+ var isMap_default = isMap;
2710
+
2711
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseIsSet.js
2712
+ var setTag4 = "[object Set]";
2713
+ function baseIsSet(value) {
2714
+ return isObjectLike_default(value) && getTag_default(value) == setTag4;
2715
+ }
2716
+ __name(baseIsSet, "baseIsSet");
2717
+ var baseIsSet_default = baseIsSet;
2718
+
2719
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/isSet.js
2720
+ var nodeIsSet = nodeUtil_default && nodeUtil_default.isSet;
2721
+ var isSet = nodeIsSet ? baseUnary_default(nodeIsSet) : baseIsSet_default;
2722
+ var isSet_default = isSet;
2723
+
2724
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseClone.js
2725
+ var CLONE_DEEP_FLAG = 1;
2726
+ var CLONE_FLAT_FLAG = 2;
2727
+ var CLONE_SYMBOLS_FLAG = 4;
2728
+ var argsTag3 = "[object Arguments]";
2729
+ var arrayTag2 = "[object Array]";
2730
+ var boolTag3 = "[object Boolean]";
2731
+ var dateTag3 = "[object Date]";
2732
+ var errorTag2 = "[object Error]";
2733
+ var funcTag3 = "[object Function]";
2734
+ var genTag2 = "[object GeneratorFunction]";
2735
+ var mapTag5 = "[object Map]";
2736
+ var numberTag3 = "[object Number]";
2737
+ var objectTag4 = "[object Object]";
2738
+ var regexpTag3 = "[object RegExp]";
2739
+ var setTag5 = "[object Set]";
2740
+ var stringTag3 = "[object String]";
2741
+ var symbolTag3 = "[object Symbol]";
2742
+ var weakMapTag3 = "[object WeakMap]";
2743
+ var arrayBufferTag3 = "[object ArrayBuffer]";
2744
+ var dataViewTag4 = "[object DataView]";
2745
+ var float32Tag3 = "[object Float32Array]";
2746
+ var float64Tag3 = "[object Float64Array]";
2747
+ var int8Tag3 = "[object Int8Array]";
2748
+ var int16Tag3 = "[object Int16Array]";
2749
+ var int32Tag3 = "[object Int32Array]";
2750
+ var uint8Tag3 = "[object Uint8Array]";
2751
+ var uint8ClampedTag3 = "[object Uint8ClampedArray]";
2752
+ var uint16Tag3 = "[object Uint16Array]";
2753
+ var uint32Tag3 = "[object Uint32Array]";
2754
+ var cloneableTags = {};
2755
+ cloneableTags[argsTag3] = cloneableTags[arrayTag2] = cloneableTags[arrayBufferTag3] = cloneableTags[dataViewTag4] = cloneableTags[boolTag3] = cloneableTags[dateTag3] = cloneableTags[float32Tag3] = cloneableTags[float64Tag3] = cloneableTags[int8Tag3] = cloneableTags[int16Tag3] = cloneableTags[int32Tag3] = cloneableTags[mapTag5] = cloneableTags[numberTag3] = cloneableTags[objectTag4] = cloneableTags[regexpTag3] = cloneableTags[setTag5] = cloneableTags[stringTag3] = cloneableTags[symbolTag3] = cloneableTags[uint8Tag3] = cloneableTags[uint8ClampedTag3] = cloneableTags[uint16Tag3] = cloneableTags[uint32Tag3] = true;
2756
+ cloneableTags[errorTag2] = cloneableTags[funcTag3] = cloneableTags[weakMapTag3] = false;
2757
+ function baseClone(value, bitmask, customizer, key, object, stack) {
2758
+ var result, isDeep = bitmask & CLONE_DEEP_FLAG, isFlat = bitmask & CLONE_FLAT_FLAG, isFull = bitmask & CLONE_SYMBOLS_FLAG;
2759
+ if (customizer) {
2760
+ result = object ? customizer(value, key, object, stack) : customizer(value);
2761
+ }
2762
+ if (result !== void 0) {
2763
+ return result;
2764
+ }
2765
+ if (!isObject_default(value)) {
2766
+ return value;
2767
+ }
2768
+ var isArr = isArray_default(value);
2769
+ if (isArr) {
2770
+ result = initCloneArray_default(value);
2771
+ if (!isDeep) {
2772
+ return copyArray_default(value, result);
2773
+ }
2774
+ } else {
2775
+ var tag = getTag_default(value), isFunc = tag == funcTag3 || tag == genTag2;
2776
+ if (isBuffer_default(value)) {
2777
+ return cloneBuffer_default(value, isDeep);
2778
+ }
2779
+ if (tag == objectTag4 || tag == argsTag3 || isFunc && !object) {
2780
+ result = isFlat || isFunc ? {} : initCloneObject_default(value);
2781
+ if (!isDeep) {
2782
+ return isFlat ? copySymbolsIn_default(value, baseAssignIn_default(result, value)) : copySymbols_default(value, baseAssign_default(result, value));
2783
+ }
2784
+ } else {
2785
+ if (!cloneableTags[tag]) {
2786
+ return object ? value : {};
2787
+ }
2788
+ result = initCloneByTag_default(value, tag, isDeep);
2789
+ }
2790
+ }
2791
+ stack || (stack = new Stack_default());
2792
+ var stacked = stack.get(value);
2793
+ if (stacked) {
2794
+ return stacked;
2795
+ }
2796
+ stack.set(value, result);
2797
+ if (isSet_default(value)) {
2798
+ value.forEach(function(subValue) {
2799
+ result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack));
2800
+ });
2801
+ } else if (isMap_default(value)) {
2802
+ value.forEach(function(subValue, key2) {
2803
+ result.set(key2, baseClone(subValue, bitmask, customizer, key2, value, stack));
2804
+ });
2805
+ }
2806
+ var keysFunc = isFull ? isFlat ? getAllKeysIn_default : getAllKeys_default : isFlat ? keysIn_default : keys_default;
2807
+ var props = isArr ? void 0 : keysFunc(value);
2808
+ arrayEach_default(props || value, function(subValue, key2) {
2809
+ if (props) {
2810
+ key2 = subValue;
2811
+ subValue = value[key2];
2812
+ }
2813
+ assignValue_default(result, key2, baseClone(subValue, bitmask, customizer, key2, value, stack));
2814
+ });
2815
+ return result;
2816
+ }
2817
+ __name(baseClone, "baseClone");
2818
+ var baseClone_default = baseClone;
2819
+
2820
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/last.js
2821
+ function last(array) {
2822
+ var length = array == null ? 0 : array.length;
2823
+ return length ? array[length - 1] : void 0;
2824
+ }
2825
+ __name(last, "last");
2826
+ var last_default = last;
2827
+
2828
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_parent.js
2829
+ function parent(object, path) {
2830
+ return path.length < 2 ? object : baseGet_default(object, baseSlice_default(path, 0, -1));
2831
+ }
2832
+ __name(parent, "parent");
2833
+ var parent_default = parent;
2834
+
2835
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_baseUnset.js
2836
+ var objectProto15 = Object.prototype;
2837
+ var hasOwnProperty13 = objectProto15.hasOwnProperty;
2838
+ function baseUnset(object, path) {
2839
+ path = castPath_default(path, object);
2840
+ var index = -1, length = path.length;
2841
+ if (!length) {
2842
+ return true;
2843
+ }
2844
+ var isRootPrimitive = object == null || typeof object !== "object" && typeof object !== "function";
2845
+ while (++index < length) {
2846
+ var key = path[index];
2847
+ if (typeof key !== "string") {
2848
+ continue;
2849
+ }
2850
+ if (key === "__proto__" && !hasOwnProperty13.call(object, "__proto__")) {
2851
+ return false;
2852
+ }
2853
+ if (key === "constructor" && index + 1 < length && typeof path[index + 1] === "string" && path[index + 1] === "prototype") {
2854
+ if (isRootPrimitive && index === 0) {
2855
+ continue;
2856
+ }
2857
+ return false;
2858
+ }
2859
+ }
2860
+ var obj = parent_default(object, path);
2861
+ return obj == null || delete obj[toKey_default(last_default(path))];
2862
+ }
2863
+ __name(baseUnset, "baseUnset");
2864
+ var baseUnset_default = baseUnset;
2865
+
2866
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/_customOmitClone.js
2867
+ function customOmitClone(value) {
2868
+ return isPlainObject_default(value) ? void 0 : value;
2869
+ }
2870
+ __name(customOmitClone, "customOmitClone");
2871
+ var customOmitClone_default = customOmitClone;
2872
+
2873
+ // node_modules/.pnpm/lodash-es@4.17.22/node_modules/lodash-es/omit.js
2874
+ var CLONE_DEEP_FLAG2 = 1;
2875
+ var CLONE_FLAT_FLAG2 = 2;
2876
+ var CLONE_SYMBOLS_FLAG2 = 4;
2877
+ var omit = flatRest_default(function(object, paths) {
2878
+ var result = {};
2879
+ if (object == null) {
2880
+ return result;
2881
+ }
2882
+ var isDeep = false;
2883
+ paths = arrayMap_default(paths, function(path) {
2884
+ path = castPath_default(path, object);
2885
+ isDeep || (isDeep = path.length > 1);
2886
+ return path;
2887
+ });
2888
+ copyObject_default(object, getAllKeysIn_default(object), result);
2889
+ if (isDeep) {
2890
+ result = baseClone_default(result, CLONE_DEEP_FLAG2 | CLONE_FLAT_FLAG2 | CLONE_SYMBOLS_FLAG2, customOmitClone_default);
2891
+ }
2892
+ var length = paths.length;
2893
+ while (length--) {
2894
+ baseUnset_default(result, paths[length]);
2895
+ }
2896
+ return result;
2897
+ });
2898
+ var omit_default = omit;
2899
+
2900
+ // src/compile.ts
2901
+ var import_esniff = __toESM(require_esniff(), 1);
2902
+ var i;
2903
+ var current;
2904
+ var literals;
2905
+ var substitutions;
2906
+ var template;
2907
+ var Notation = "$";
2908
+ var NotationStart = "{";
2909
+ var NotationEnd = "}";
2910
+ var _a;
2911
+ var Compile = (_a = class {
2912
+ }, __name(_a, "Compile"), __publicField(_a, "sOut", /* @__PURE__ */ __name((char) => {
2913
+ if (char === "\\")
2914
+ return _a.sEscape;
2915
+ if (char === Notation)
2916
+ return _a.sAhead;
2917
+ current += char;
2918
+ return _a.sOut;
2919
+ }, "sOut")), __publicField(_a, "sEscape", /* @__PURE__ */ __name((char) => {
2920
+ if (char !== "\\" && char !== Notation) {
2921
+ current += "\\";
2922
+ }
2923
+ current += char;
2924
+ return _a.sOut;
2925
+ }, "sEscape")), __publicField(_a, "sAhead", /* @__PURE__ */ __name((char) => {
2926
+ if (char === NotationStart) {
2927
+ literals == null ? void 0 : literals.push(current);
2928
+ current = "";
2929
+ return _a.sIn;
2930
+ }
2931
+ if (char === Notation) {
2932
+ current += Notation;
2933
+ return _a.sAhead;
2934
+ }
2935
+ current += Notation + char;
2936
+ return _a.sOut;
2937
+ }, "sAhead")), __publicField(_a, "sIn", /* @__PURE__ */ __name(() => {
2938
+ const code = template.slice(i);
2939
+ let end;
2940
+ (0, import_esniff.default)(code, NotationEnd, (j) => {
2941
+ if (import_esniff.default.nest >= 0)
2942
+ return import_esniff.default.next();
2943
+ end = j;
2944
+ });
2945
+ if (end != null) {
2946
+ substitutions == null ? void 0 : substitutions.push(template.slice(i, i + end));
2947
+ i += end;
2948
+ current = "";
2949
+ return _a.sOut;
2950
+ }
2951
+ end = code.length;
2952
+ i += end;
2953
+ current += code;
2954
+ return _a.sIn;
2955
+ }, "sIn")), __publicField(_a, "sInEscape", /* @__PURE__ */ __name(function(char) {
2956
+ if (char !== "\\" && char !== NotationEnd) {
2957
+ current += "\\";
2958
+ }
2959
+ current += char;
2960
+ return _a.sIn;
2961
+ }, "sInEscape")), _a);
2962
+ function compile(str, options) {
2963
+ current = "";
2964
+ literals = [];
2965
+ substitutions = [];
2966
+ Notation = (options == null ? void 0 : options.notation) || "$";
2967
+ NotationStart = (options == null ? void 0 : options.notationStart) || "{";
2968
+ NotationEnd = (options == null ? void 0 : options.notationEnd) || "}";
2969
+ template = String(str);
2970
+ const { length } = template;
2971
+ let state = Compile.sOut;
2972
+ for (i = 0; i < length; i += 1) {
2973
+ state = state(template[i]);
2974
+ }
2975
+ if (state === Compile.sOut) {
2976
+ literals.push(current);
2977
+ } else if (state === Compile.sEscape) {
2978
+ literals.push(`${current}\\`);
2979
+ } else if (state === Compile.sAhead) {
2980
+ literals.push(current + Notation);
2981
+ } else if (state === Compile.sIn) {
2982
+ literals[literals.length - 1] += `${Notation}${NotationStart}${current}`;
2983
+ } else if (state === Compile.sInEscape) {
2984
+ literals[literals.length - 1] += `${Notation}${NotationStart}${current}\\`;
2985
+ }
2986
+ const result = {
2987
+ literals,
2988
+ substitutions
2989
+ };
2990
+ literals = null;
2991
+ substitutions = null;
2992
+ return result;
2993
+ }
2994
+ __name(compile, "compile");
2995
+
2996
+ // src/resolve.ts
2997
+ var import_is_var_name_valid = __toESM(require_is_var_name_valid(), 1);
2998
+ var { stringify } = JSON;
2999
+ function isValue(value) {
3000
+ if (value === null || value === void 0)
3001
+ throw new TypeError("Cannot use null or undefined");
3002
+ return value;
3003
+ }
3004
+ __name(isValue, "isValue");
3005
+ function process(src, obj) {
3006
+ for (const key in src) {
3007
+ obj[key] = src[key];
3008
+ }
3009
+ }
3010
+ __name(process, "process");
3011
+ function normalize(...args) {
3012
+ const result = /* @__PURE__ */ Object.create(null);
3013
+ args.forEach(function(options) {
3014
+ if (!isValue(options))
3015
+ return;
3016
+ process(Object(options), result);
3017
+ });
3018
+ return result;
3019
+ }
3020
+ __name(normalize, "normalize");
3021
+ function processData(data, context, options = {}) {
3022
+ isValue(data) && isValue(data == null ? void 0 : data.literals) && isValue(data == null ? void 0 : data.substitutions);
3023
+ context = normalize(context);
3024
+ const names = Object.keys(context).filter(import_is_var_name_valid.default);
3025
+ const argNames = names.join(", ");
3026
+ const argValues = names.map((name) => context[name]);
3027
+ const { substitutions: substitutions2 = [], literals: literals2 = [] } = data;
3028
+ return [
3029
+ literals2
3030
+ ].concat(substitutions2.map((expr) => {
3031
+ let resolver;
3032
+ if (!expr)
3033
+ return void 0;
3034
+ try {
3035
+ resolver = new Function(argNames, `return (${expr})`);
3036
+ } catch (error) {
3037
+ throw new TypeError(`Unable to compile expression:
3038
+ args: ${stringify(argNames)}
3039
+ body: ${stringify(expr)}
3040
+ error: ${error.stack}`);
3041
+ }
3042
+ try {
3043
+ return resolver.apply(null, argValues);
3044
+ } catch (e) {
3045
+ if (options.partial) {
3046
+ return `\${${expr}}`;
3047
+ }
3048
+ return "undefined";
3049
+ }
3050
+ }));
3051
+ }
3052
+ __name(processData, "processData");
3053
+
3054
+ // src/passthru-array.ts
3055
+ var passthru_array_default = /* @__PURE__ */ __name((literals2, ...substitutions2) => {
3056
+ const result = [];
3057
+ const l = literals2.length;
3058
+ if (!l) {
3059
+ return result;
3060
+ }
3061
+ result.push(literals2[0]);
3062
+ for (let i2 = 1; i2 < l; i2 += 1) {
3063
+ result.push(arguments[i2], literals2[i2]);
3064
+ }
3065
+ return result;
3066
+ }, "default");
3067
+
3068
+ // src/resolve-to-array.ts
3069
+ var resolve_to_array_default = /* @__PURE__ */ __name((data, context, options) => {
3070
+ const [literals2, ...result] = processData(data, context, options);
3071
+ return passthru_array_default.call(null, literals2, ...result);
3072
+ }, "default");
3073
+
3074
+ // src/to-array.ts
3075
+ function toArray(template2, context, options) {
3076
+ const compileOptions = omit_default(options, "partial");
3077
+ return resolve_to_array_default(compile(template2, compileOptions), context, {
3078
+ partial: options == null ? void 0 : options.partial
3079
+ });
3080
+ }
3081
+ __name(toArray, "toArray");
3082
+
3083
+ // src/passthru.ts
3084
+ function passthru_default(literals2, ..._substitutions) {
3085
+ const args = arguments;
3086
+ return literals2.reduce((a, b, i2) => {
3087
+ return a + (args[i2] === void 0 ? "" : String(args[i2])) + b;
3088
+ });
3089
+ }
3090
+ __name(passthru_default, "default");
3091
+
3092
+ // src/resolve-to-string.ts
3093
+ var resolve_to_string_default = /* @__PURE__ */ __name((data, context, options) => {
3094
+ const [literals2, ...result] = processData(data, context, options);
3095
+ return passthru_default.call(null, literals2, ...result);
3096
+ }, "default");
3097
+
3098
+ // src/to-string.ts
3099
+ function to_string_default(template2, context, options) {
3100
+ const compileOptions = omit_default(options, "partial");
3101
+ return resolve_to_string_default(compile(template2, compileOptions), context, {
3102
+ partial: options == null ? void 0 : options.partial
3103
+ });
3104
+ }
3105
+ __name(to_string_default, "default");
3106
+
3107
+ // src/index.ts
3108
+ var src_default = to_string_default;
3109
+ })();
3110
+ /*! Bundled license information:
3111
+
3112
+ lodash-es/lodash.js:
3113
+ (**
3114
+ * @license
3115
+ * Lodash (Custom Build) <https://lodash.com/>
3116
+ * Build: `lodash modularize exports="es" -o ./`
3117
+ * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
3118
+ * Released under MIT license <https://lodash.com/license>
3119
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
3120
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
3121
+ *)
3122
+ */
3123
+ //# sourceMappingURL=index.js.map