@powerlines/deepkit 0.5.25 → 0.5.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vendor/{chunk-HDHYUILP.cjs → chunk-4VQKNTEO.cjs} +176 -176
- package/dist/vendor/{chunk-J3NQHJCY.cjs → chunk-J7M3ZDX2.cjs} +3 -3
- package/dist/vendor/{chunk-WLTQVSCD.cjs → chunk-VPMSZPFK.cjs} +2 -2
- package/dist/vendor/core.cjs +130 -130
- package/dist/vendor/type-compiler/{chunk-UHD2VAAR.cjs → chunk-2ZXBXKUR.cjs} +2 -2
- package/dist/vendor/type-compiler/{chunk-KL56CMRP.cjs → chunk-3DXX6OBU.cjs} +505 -505
- package/dist/vendor/type-compiler/{chunk-CLULUIFR.js → chunk-AOOLALFL.js} +1 -1
- package/dist/vendor/type-compiler/{chunk-YQ7N5TFU.js → chunk-GJBQ6F45.js} +2 -2
- package/dist/vendor/type-compiler/compiler.cjs +12 -12
- package/dist/vendor/type-compiler/compiler.js +2 -2
- package/dist/vendor/type-compiler/config.cjs +9 -9
- package/dist/vendor/type-compiler/config.js +2 -2
- package/dist/vendor/type-compiler/index.cjs +24 -24
- package/dist/vendor/type-compiler/index.js +4 -4
- package/dist/vendor/type-spec.cjs +5 -5
- package/dist/vendor/type.cjs +776 -776
- package/package.json +4 -4
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkVPMSZPFK_cjs = require('./chunk-VPMSZPFK.cjs');
|
|
4
4
|
|
|
5
5
|
// ../../node_modules/.pnpm/is-obj@2.0.0/node_modules/is-obj/index.js
|
|
6
|
-
var require_is_obj =
|
|
6
|
+
var require_is_obj = chunkVPMSZPFK_cjs.__commonJS({
|
|
7
7
|
"../../node_modules/.pnpm/is-obj@2.0.0/node_modules/is-obj/index.js"(exports$1, module) {
|
|
8
|
-
|
|
8
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
9
9
|
module.exports = (value) => {
|
|
10
10
|
const type = typeof value;
|
|
11
11
|
return value !== null && (type === "object" || type === "function");
|
|
@@ -14,16 +14,16 @@ var require_is_obj = chunkWLTQVSCD_cjs.__commonJS({
|
|
|
14
14
|
});
|
|
15
15
|
|
|
16
16
|
// ../../node_modules/.pnpm/dot-prop@5.3.0/node_modules/dot-prop/index.js
|
|
17
|
-
var require_dot_prop =
|
|
17
|
+
var require_dot_prop = chunkVPMSZPFK_cjs.__commonJS({
|
|
18
18
|
"../../node_modules/.pnpm/dot-prop@5.3.0/node_modules/dot-prop/index.js"(exports$1, module) {
|
|
19
|
-
|
|
19
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
20
20
|
var isObj = require_is_obj();
|
|
21
21
|
var disallowedKeys = [
|
|
22
22
|
"__proto__",
|
|
23
23
|
"prototype",
|
|
24
24
|
"constructor"
|
|
25
25
|
];
|
|
26
|
-
var isValidPath = /* @__PURE__ */
|
|
26
|
+
var isValidPath = /* @__PURE__ */ chunkVPMSZPFK_cjs.__name((pathSegments) => !pathSegments.some((segment) => disallowedKeys.includes(segment)), "isValidPath");
|
|
27
27
|
function getPathSegments(path) {
|
|
28
28
|
const pathArray = path.split(".");
|
|
29
29
|
const parts = [];
|
|
@@ -40,7 +40,7 @@ var require_dot_prop = chunkWLTQVSCD_cjs.__commonJS({
|
|
|
40
40
|
}
|
|
41
41
|
return parts;
|
|
42
42
|
}
|
|
43
|
-
|
|
43
|
+
chunkVPMSZPFK_cjs.__name(getPathSegments, "getPathSegments");
|
|
44
44
|
module.exports = {
|
|
45
45
|
get(object, path, value) {
|
|
46
46
|
if (!isObj(object) || typeof path !== "string") {
|
|
@@ -124,9 +124,9 @@ var require_dot_prop = chunkWLTQVSCD_cjs.__commonJS({
|
|
|
124
124
|
});
|
|
125
125
|
|
|
126
126
|
// ../../node_modules/.pnpm/to-fast-properties@3.0.1/node_modules/to-fast-properties/index.js
|
|
127
|
-
var require_to_fast_properties =
|
|
127
|
+
var require_to_fast_properties = chunkVPMSZPFK_cjs.__commonJS({
|
|
128
128
|
"../../node_modules/.pnpm/to-fast-properties@3.0.1/node_modules/to-fast-properties/index.js"(exports$1, module) {
|
|
129
|
-
|
|
129
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
130
130
|
var fastProto = null;
|
|
131
131
|
function FastObject(o) {
|
|
132
132
|
if (fastProto !== null && typeof fastProto.property) {
|
|
@@ -137,19 +137,19 @@ var require_to_fast_properties = chunkWLTQVSCD_cjs.__commonJS({
|
|
|
137
137
|
fastProto = FastObject.prototype = o == null ? /* @__PURE__ */ Object.create(null) : o;
|
|
138
138
|
return new FastObject();
|
|
139
139
|
}
|
|
140
|
-
|
|
140
|
+
chunkVPMSZPFK_cjs.__name(FastObject, "FastObject");
|
|
141
141
|
var inlineCacheCutoff = 10;
|
|
142
142
|
for (let i = 0; i <= inlineCacheCutoff; i++) {
|
|
143
143
|
FastObject();
|
|
144
144
|
}
|
|
145
|
-
module.exports = /* @__PURE__ */
|
|
145
|
+
module.exports = /* @__PURE__ */ chunkVPMSZPFK_cjs.__name(function toFastproperties(o) {
|
|
146
146
|
return FastObject(o);
|
|
147
147
|
}, "toFastproperties");
|
|
148
148
|
}
|
|
149
149
|
});
|
|
150
150
|
|
|
151
151
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/iterators.js
|
|
152
|
-
|
|
152
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
153
153
|
var __\u03A9ArrayLike = [
|
|
154
154
|
"T",
|
|
155
155
|
"length",
|
|
@@ -232,7 +232,7 @@ function* eachKey(object) {
|
|
|
232
232
|
}
|
|
233
233
|
}
|
|
234
234
|
}
|
|
235
|
-
|
|
235
|
+
chunkVPMSZPFK_cjs.__name(eachKey, "eachKey");
|
|
236
236
|
eachKey.__type = [
|
|
237
237
|
() => __\u03A9ArrayLike,
|
|
238
238
|
"object",
|
|
@@ -253,7 +253,7 @@ function* each(object) {
|
|
|
253
253
|
}
|
|
254
254
|
}
|
|
255
255
|
}
|
|
256
|
-
|
|
256
|
+
chunkVPMSZPFK_cjs.__name(each, "each");
|
|
257
257
|
each.__type = [
|
|
258
258
|
() => __\u03A9ArrayLike,
|
|
259
259
|
"object",
|
|
@@ -293,7 +293,7 @@ function* eachPair(object) {
|
|
|
293
293
|
}
|
|
294
294
|
}
|
|
295
295
|
}
|
|
296
|
-
|
|
296
|
+
chunkVPMSZPFK_cjs.__name(eachPair, "eachPair");
|
|
297
297
|
eachPair.__type = [
|
|
298
298
|
() => __\u03A9ArrayLike,
|
|
299
299
|
"object",
|
|
@@ -303,8 +303,8 @@ eachPair.__type = [
|
|
|
303
303
|
];
|
|
304
304
|
|
|
305
305
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/core.js
|
|
306
|
-
|
|
307
|
-
var import_dot_prop =
|
|
306
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
307
|
+
var import_dot_prop = chunkVPMSZPFK_cjs.__toESM(require_dot_prop(), 1);
|
|
308
308
|
var __\u03A9Object = [
|
|
309
309
|
() => Function,
|
|
310
310
|
"constructor",
|
|
@@ -387,10 +387,10 @@ function __assignType(fn, args) {
|
|
|
387
387
|
fn.__type = args;
|
|
388
388
|
return fn;
|
|
389
389
|
}
|
|
390
|
-
|
|
390
|
+
chunkVPMSZPFK_cjs.__name(__assignType, "__assignType");
|
|
391
391
|
var CustomError = class extends Error {
|
|
392
392
|
static {
|
|
393
|
-
|
|
393
|
+
chunkVPMSZPFK_cjs.__name(this, "CustomError");
|
|
394
394
|
}
|
|
395
395
|
constructor(...args) {
|
|
396
396
|
super(...args);
|
|
@@ -435,7 +435,7 @@ function getClassName(classTypeOrInstance) {
|
|
|
435
435
|
const proto = classTypeOrInstance["prototype"] ? classTypeOrInstance["prototype"] : classTypeOrInstance;
|
|
436
436
|
return proto.constructor.name || "anonymous class";
|
|
437
437
|
}
|
|
438
|
-
|
|
438
|
+
chunkVPMSZPFK_cjs.__name(getClassName, "getClassName");
|
|
439
439
|
getClassName.__type = [
|
|
440
440
|
() => __\u03A9ClassType,
|
|
441
441
|
() => __\u03A9Object,
|
|
@@ -447,7 +447,7 @@ function getClassPropertyName(classType, propertyName) {
|
|
|
447
447
|
const name = getClassName(classType);
|
|
448
448
|
return `${name}.${propertyName}`;
|
|
449
449
|
}
|
|
450
|
-
|
|
450
|
+
chunkVPMSZPFK_cjs.__name(getClassPropertyName, "getClassPropertyName");
|
|
451
451
|
getClassPropertyName.__type = [
|
|
452
452
|
() => __\u03A9ClassType,
|
|
453
453
|
() => __\u03A9Object,
|
|
@@ -463,7 +463,7 @@ function applyDefaults(classType, target) {
|
|
|
463
463
|
}
|
|
464
464
|
return classInstance;
|
|
465
465
|
}
|
|
466
|
-
|
|
466
|
+
chunkVPMSZPFK_cjs.__name(applyDefaults, "applyDefaults");
|
|
467
467
|
applyDefaults.__type = [
|
|
468
468
|
() => __\u03A9ClassType,
|
|
469
469
|
"classType",
|
|
@@ -474,7 +474,7 @@ applyDefaults.__type = [
|
|
|
474
474
|
function identifyType(obj) {
|
|
475
475
|
return (({}.toString.call(obj).match(/\s([a-zA-Z]+)/) || [])[1] || "").toLowerCase();
|
|
476
476
|
}
|
|
477
|
-
|
|
477
|
+
chunkVPMSZPFK_cjs.__name(identifyType, "identifyType");
|
|
478
478
|
identifyType.__type = [
|
|
479
479
|
"obj",
|
|
480
480
|
"identifyType",
|
|
@@ -483,7 +483,7 @@ identifyType.__type = [
|
|
|
483
483
|
function isPlainObject(obj) {
|
|
484
484
|
return Boolean(obj && typeof obj === "object" && obj.constructor instanceof obj.constructor);
|
|
485
485
|
}
|
|
486
|
-
|
|
486
|
+
chunkVPMSZPFK_cjs.__name(isPlainObject, "isPlainObject");
|
|
487
487
|
isPlainObject.__type = [
|
|
488
488
|
"obj",
|
|
489
489
|
"isPlainObject",
|
|
@@ -495,7 +495,7 @@ function getClassTypeFromInstance(target) {
|
|
|
495
495
|
}
|
|
496
496
|
return target["constructor"];
|
|
497
497
|
}
|
|
498
|
-
|
|
498
|
+
chunkVPMSZPFK_cjs.__name(getClassTypeFromInstance, "getClassTypeFromInstance");
|
|
499
499
|
getClassTypeFromInstance.__type = [
|
|
500
500
|
"target",
|
|
501
501
|
() => __\u03A9ClassType,
|
|
@@ -505,7 +505,7 @@ getClassTypeFromInstance.__type = [
|
|
|
505
505
|
function isClassInstance(target) {
|
|
506
506
|
return target !== void 0 && target !== null && target["constructor"] && Object.getPrototypeOf(target) === target["constructor"].prototype && !isPlainObject(target) && isObject(target);
|
|
507
507
|
}
|
|
508
|
-
|
|
508
|
+
chunkVPMSZPFK_cjs.__name(isClassInstance, "isClassInstance");
|
|
509
509
|
isClassInstance.__type = [
|
|
510
510
|
"target",
|
|
511
511
|
"isClassInstance",
|
|
@@ -524,7 +524,7 @@ function stringifyValueWithType(value, depth = 0) {
|
|
|
524
524
|
if (null === value) return `null`;
|
|
525
525
|
return "undefined";
|
|
526
526
|
}
|
|
527
|
-
|
|
527
|
+
chunkVPMSZPFK_cjs.__name(stringifyValueWithType, "stringifyValueWithType");
|
|
528
528
|
stringifyValueWithType.__type = [
|
|
529
529
|
"value",
|
|
530
530
|
"depth",
|
|
@@ -535,7 +535,7 @@ stringifyValueWithType.__type = [
|
|
|
535
535
|
function changeClass(value, newClass) {
|
|
536
536
|
return Object.assign(Object.create(newClass.prototype), value);
|
|
537
537
|
}
|
|
538
|
-
|
|
538
|
+
chunkVPMSZPFK_cjs.__name(changeClass, "changeClass");
|
|
539
539
|
changeClass.__type = [
|
|
540
540
|
"value",
|
|
541
541
|
() => __\u03A9ClassType,
|
|
@@ -550,7 +550,7 @@ function prettyPrintObject(object, depth = 0) {
|
|
|
550
550
|
}
|
|
551
551
|
return "{" + res.join(",") + "}";
|
|
552
552
|
}
|
|
553
|
-
|
|
553
|
+
chunkVPMSZPFK_cjs.__name(prettyPrintObject, "prettyPrintObject");
|
|
554
554
|
prettyPrintObject.__type = [
|
|
555
555
|
"object",
|
|
556
556
|
"depth",
|
|
@@ -564,7 +564,7 @@ function isFunction(obj) {
|
|
|
564
564
|
}
|
|
565
565
|
return false;
|
|
566
566
|
}
|
|
567
|
-
|
|
567
|
+
chunkVPMSZPFK_cjs.__name(isFunction, "isFunction");
|
|
568
568
|
isFunction.__type = [
|
|
569
569
|
"obj",
|
|
570
570
|
"isFunction",
|
|
@@ -575,7 +575,7 @@ var AsyncFunction = (async () => {
|
|
|
575
575
|
function isAsyncFunction(obj) {
|
|
576
576
|
return obj instanceof AsyncFunction;
|
|
577
577
|
}
|
|
578
|
-
|
|
578
|
+
chunkVPMSZPFK_cjs.__name(isAsyncFunction, "isAsyncFunction");
|
|
579
579
|
isAsyncFunction.__type = [
|
|
580
580
|
"obj",
|
|
581
581
|
"isAsyncFunction",
|
|
@@ -584,7 +584,7 @@ isAsyncFunction.__type = [
|
|
|
584
584
|
function isPromise(obj) {
|
|
585
585
|
return obj !== null && typeof obj === "object" && typeof obj.then === "function" && typeof obj.catch === "function" && typeof obj.finally === "function";
|
|
586
586
|
}
|
|
587
|
-
|
|
587
|
+
chunkVPMSZPFK_cjs.__name(isPromise, "isPromise");
|
|
588
588
|
isPromise.__type = [
|
|
589
589
|
"obj",
|
|
590
590
|
"isPromise",
|
|
@@ -596,7 +596,7 @@ function isClass(obj) {
|
|
|
596
596
|
}
|
|
597
597
|
return false;
|
|
598
598
|
}
|
|
599
|
-
|
|
599
|
+
chunkVPMSZPFK_cjs.__name(isClass, "isClass");
|
|
600
600
|
isClass.__type = [
|
|
601
601
|
"obj",
|
|
602
602
|
"isClass",
|
|
@@ -612,7 +612,7 @@ function isGlobalClass(obj) {
|
|
|
612
612
|
}
|
|
613
613
|
return false;
|
|
614
614
|
}
|
|
615
|
-
|
|
615
|
+
chunkVPMSZPFK_cjs.__name(isGlobalClass, "isGlobalClass");
|
|
616
616
|
isGlobalClass.__type = [
|
|
617
617
|
"obj",
|
|
618
618
|
"isGlobalClass",
|
|
@@ -624,7 +624,7 @@ function isObject(obj) {
|
|
|
624
624
|
}
|
|
625
625
|
return typeof obj === "object" && !isArray(obj);
|
|
626
626
|
}
|
|
627
|
-
|
|
627
|
+
chunkVPMSZPFK_cjs.__name(isObject, "isObject");
|
|
628
628
|
isObject.__type = [
|
|
629
629
|
"obj",
|
|
630
630
|
"isObject",
|
|
@@ -633,7 +633,7 @@ isObject.__type = [
|
|
|
633
633
|
function isObjectLiteral(obj) {
|
|
634
634
|
return isObject(obj) && !(obj instanceof Date) && !(obj instanceof Map) && !(obj instanceof Set);
|
|
635
635
|
}
|
|
636
|
-
|
|
636
|
+
chunkVPMSZPFK_cjs.__name(isObjectLiteral, "isObjectLiteral");
|
|
637
637
|
isObjectLiteral.__type = [
|
|
638
638
|
"obj",
|
|
639
639
|
"isObjectLiteral",
|
|
@@ -643,7 +643,7 @@ var isArray = Array.isArray;
|
|
|
643
643
|
function isNull(obj) {
|
|
644
644
|
return null === obj;
|
|
645
645
|
}
|
|
646
|
-
|
|
646
|
+
chunkVPMSZPFK_cjs.__name(isNull, "isNull");
|
|
647
647
|
isNull.__type = [
|
|
648
648
|
"obj",
|
|
649
649
|
"isNull",
|
|
@@ -652,7 +652,7 @@ isNull.__type = [
|
|
|
652
652
|
function isUndefined(obj) {
|
|
653
653
|
return void 0 === obj;
|
|
654
654
|
}
|
|
655
|
-
|
|
655
|
+
chunkVPMSZPFK_cjs.__name(isUndefined, "isUndefined");
|
|
656
656
|
isUndefined.__type = [
|
|
657
657
|
"obj",
|
|
658
658
|
"isUndefined",
|
|
@@ -661,7 +661,7 @@ isUndefined.__type = [
|
|
|
661
661
|
function isSet(obj) {
|
|
662
662
|
return !isNull(obj) && !isUndefined(obj);
|
|
663
663
|
}
|
|
664
|
-
|
|
664
|
+
chunkVPMSZPFK_cjs.__name(isSet, "isSet");
|
|
665
665
|
isSet.__type = [
|
|
666
666
|
"obj",
|
|
667
667
|
"isSet",
|
|
@@ -670,7 +670,7 @@ isSet.__type = [
|
|
|
670
670
|
function isNumber(obj) {
|
|
671
671
|
return "number" === identifyType(obj);
|
|
672
672
|
}
|
|
673
|
-
|
|
673
|
+
chunkVPMSZPFK_cjs.__name(isNumber, "isNumber");
|
|
674
674
|
isNumber.__type = [
|
|
675
675
|
"obj",
|
|
676
676
|
"isNumber",
|
|
@@ -689,7 +689,7 @@ function isNumeric(s) {
|
|
|
689
689
|
}
|
|
690
690
|
return true;
|
|
691
691
|
}
|
|
692
|
-
|
|
692
|
+
chunkVPMSZPFK_cjs.__name(isNumeric, "isNumeric");
|
|
693
693
|
isNumeric.__type = [
|
|
694
694
|
"s",
|
|
695
695
|
"isNumeric",
|
|
@@ -705,7 +705,7 @@ var isInteger = Number.isInteger || __assignType(function(obj) {
|
|
|
705
705
|
function isString(obj) {
|
|
706
706
|
return "string" === identifyType(obj);
|
|
707
707
|
}
|
|
708
|
-
|
|
708
|
+
chunkVPMSZPFK_cjs.__name(isString, "isString");
|
|
709
709
|
isString.__type = [
|
|
710
710
|
"obj",
|
|
711
711
|
"isString",
|
|
@@ -717,7 +717,7 @@ function indexOf(array, item) {
|
|
|
717
717
|
}
|
|
718
718
|
return array.indexOf(item);
|
|
719
719
|
}
|
|
720
|
-
|
|
720
|
+
chunkVPMSZPFK_cjs.__name(indexOf, "indexOf");
|
|
721
721
|
indexOf.__type = [
|
|
722
722
|
"array",
|
|
723
723
|
"item",
|
|
@@ -735,7 +735,7 @@ async function sleep(seconds) {
|
|
|
735
735
|
'P"2!"/"'
|
|
736
736
|
]));
|
|
737
737
|
}
|
|
738
|
-
|
|
738
|
+
chunkVPMSZPFK_cjs.__name(sleep, "sleep");
|
|
739
739
|
sleep.__type = [
|
|
740
740
|
"seconds",
|
|
741
741
|
"sleep",
|
|
@@ -747,7 +747,7 @@ function copy(v) {
|
|
|
747
747
|
}
|
|
748
748
|
return v;
|
|
749
749
|
}
|
|
750
|
-
|
|
750
|
+
chunkVPMSZPFK_cjs.__name(copy, "copy");
|
|
751
751
|
copy.__type = [
|
|
752
752
|
"v",
|
|
753
753
|
"copy",
|
|
@@ -762,7 +762,7 @@ function empty(value) {
|
|
|
762
762
|
return true;
|
|
763
763
|
}
|
|
764
764
|
}
|
|
765
|
-
|
|
765
|
+
chunkVPMSZPFK_cjs.__name(empty, "empty");
|
|
766
766
|
empty.__type = [
|
|
767
767
|
"value",
|
|
768
768
|
"empty",
|
|
@@ -778,7 +778,7 @@ function size(array) {
|
|
|
778
778
|
return getObjectKeysSize(array);
|
|
779
779
|
}
|
|
780
780
|
}
|
|
781
|
-
|
|
781
|
+
chunkVPMSZPFK_cjs.__name(size, "size");
|
|
782
782
|
size.__type = [
|
|
783
783
|
"array",
|
|
784
784
|
"size",
|
|
@@ -787,7 +787,7 @@ size.__type = [
|
|
|
787
787
|
function firstKey(v) {
|
|
788
788
|
return Object.keys(v)[0];
|
|
789
789
|
}
|
|
790
|
-
|
|
790
|
+
chunkVPMSZPFK_cjs.__name(firstKey, "firstKey");
|
|
791
791
|
firstKey.__type = [
|
|
792
792
|
"v",
|
|
793
793
|
"firstKey",
|
|
@@ -800,7 +800,7 @@ function lastKey(v) {
|
|
|
800
800
|
}
|
|
801
801
|
return keys[keys.length - 1];
|
|
802
802
|
}
|
|
803
|
-
|
|
803
|
+
chunkVPMSZPFK_cjs.__name(lastKey, "lastKey");
|
|
804
804
|
lastKey.__type = [
|
|
805
805
|
"v",
|
|
806
806
|
"lastKey",
|
|
@@ -816,7 +816,7 @@ function first(v) {
|
|
|
816
816
|
}
|
|
817
817
|
return;
|
|
818
818
|
}
|
|
819
|
-
|
|
819
|
+
chunkVPMSZPFK_cjs.__name(first, "first");
|
|
820
820
|
first.__type = [
|
|
821
821
|
"v",
|
|
822
822
|
"first",
|
|
@@ -835,7 +835,7 @@ function last(v) {
|
|
|
835
835
|
}
|
|
836
836
|
return;
|
|
837
837
|
}
|
|
838
|
-
|
|
838
|
+
chunkVPMSZPFK_cjs.__name(last, "last");
|
|
839
839
|
last.__type = [
|
|
840
840
|
"v",
|
|
841
841
|
"last",
|
|
@@ -848,7 +848,7 @@ function average(array) {
|
|
|
848
848
|
}
|
|
849
849
|
return sum / array.length;
|
|
850
850
|
}
|
|
851
|
-
|
|
851
|
+
chunkVPMSZPFK_cjs.__name(average, "average");
|
|
852
852
|
average.__type = [
|
|
853
853
|
"array",
|
|
854
854
|
"average",
|
|
@@ -862,7 +862,7 @@ function prependObjectKeys(o, prependText) {
|
|
|
862
862
|
}
|
|
863
863
|
return converted;
|
|
864
864
|
}
|
|
865
|
-
|
|
865
|
+
chunkVPMSZPFK_cjs.__name(prependObjectKeys, "prependObjectKeys");
|
|
866
866
|
prependObjectKeys.__type = [
|
|
867
867
|
"o",
|
|
868
868
|
"prependText",
|
|
@@ -875,7 +875,7 @@ function appendObject(origin, extend, prependKeyName = "") {
|
|
|
875
875
|
origin[i] = v;
|
|
876
876
|
}
|
|
877
877
|
}
|
|
878
|
-
|
|
878
|
+
chunkVPMSZPFK_cjs.__name(appendObject, "appendObject");
|
|
879
879
|
appendObject.__type = [
|
|
880
880
|
"origin",
|
|
881
881
|
"extend",
|
|
@@ -900,7 +900,7 @@ async function asyncOperation(executor) {
|
|
|
900
900
|
throw error;
|
|
901
901
|
}
|
|
902
902
|
}
|
|
903
|
-
|
|
903
|
+
chunkVPMSZPFK_cjs.__name(asyncOperation, "asyncOperation");
|
|
904
904
|
function fixAsyncOperation(promise) {
|
|
905
905
|
return asyncOperation(__assignType(async (resolve, reject) => {
|
|
906
906
|
resolve(await promise);
|
|
@@ -911,7 +911,7 @@ function fixAsyncOperation(promise) {
|
|
|
911
911
|
'P"2!"2""/#'
|
|
912
912
|
]));
|
|
913
913
|
}
|
|
914
|
-
|
|
914
|
+
chunkVPMSZPFK_cjs.__name(fixAsyncOperation, "fixAsyncOperation");
|
|
915
915
|
fixAsyncOperation.__type = [
|
|
916
916
|
"promise",
|
|
917
917
|
"fixAsyncOperation",
|
|
@@ -929,7 +929,7 @@ function mergePromiseStack(promise, stack2) {
|
|
|
929
929
|
]));
|
|
930
930
|
return promise;
|
|
931
931
|
}
|
|
932
|
-
|
|
932
|
+
chunkVPMSZPFK_cjs.__name(mergePromiseStack, "mergePromiseStack");
|
|
933
933
|
mergePromiseStack.__type = [
|
|
934
934
|
"promise",
|
|
935
935
|
"stack",
|
|
@@ -947,7 +947,7 @@ function createStack(removeCallee = true) {
|
|
|
947
947
|
}
|
|
948
948
|
return stack2;
|
|
949
949
|
}
|
|
950
|
-
|
|
950
|
+
chunkVPMSZPFK_cjs.__name(createStack, "createStack");
|
|
951
951
|
createStack.__type = [
|
|
952
952
|
"removeCallee",
|
|
953
953
|
() => true,
|
|
@@ -959,7 +959,7 @@ function mergeStack(error, stack2) {
|
|
|
959
959
|
error.stack += "\n" + stack2;
|
|
960
960
|
}
|
|
961
961
|
}
|
|
962
|
-
|
|
962
|
+
chunkVPMSZPFK_cjs.__name(mergeStack, "mergeStack");
|
|
963
963
|
mergeStack.__type = [
|
|
964
964
|
() => __\u03A9Error,
|
|
965
965
|
"error",
|
|
@@ -970,7 +970,7 @@ mergeStack.__type = [
|
|
|
970
970
|
function ensureError(error, classType = Error) {
|
|
971
971
|
return error instanceof Error || error instanceof AggregateError ? error : new classType(error);
|
|
972
972
|
}
|
|
973
|
-
|
|
973
|
+
chunkVPMSZPFK_cjs.__name(ensureError, "ensureError");
|
|
974
974
|
ensureError.__type = [
|
|
975
975
|
"error",
|
|
976
976
|
() => __\u03A9ClassType,
|
|
@@ -1001,7 +1001,7 @@ function collectForMicrotask(callback) {
|
|
|
1001
1001
|
'PPdi!Ph"!F2"$/#qe!!!j2$"/#'
|
|
1002
1002
|
]);
|
|
1003
1003
|
}
|
|
1004
|
-
|
|
1004
|
+
chunkVPMSZPFK_cjs.__name(collectForMicrotask, "collectForMicrotask");
|
|
1005
1005
|
collectForMicrotask.__type = [
|
|
1006
1006
|
"args",
|
|
1007
1007
|
"",
|
|
@@ -1013,7 +1013,7 @@ collectForMicrotask.__type = [
|
|
|
1013
1013
|
function time() {
|
|
1014
1014
|
return Date.now() / 1e3;
|
|
1015
1015
|
}
|
|
1016
|
-
|
|
1016
|
+
chunkVPMSZPFK_cjs.__name(time, "time");
|
|
1017
1017
|
time.__type = [
|
|
1018
1018
|
"time",
|
|
1019
1019
|
"P'/!"
|
|
@@ -1026,7 +1026,7 @@ function getPathValue(bag, parameterPath, defaultValue) {
|
|
|
1026
1026
|
const result = import_dot_prop.default.get(bag, parameterPath);
|
|
1027
1027
|
return isSet(result) ? result : defaultValue;
|
|
1028
1028
|
}
|
|
1029
|
-
|
|
1029
|
+
chunkVPMSZPFK_cjs.__name(getPathValue, "getPathValue");
|
|
1030
1030
|
getPathValue.__type = [
|
|
1031
1031
|
"bag",
|
|
1032
1032
|
"parameterPath",
|
|
@@ -1037,7 +1037,7 @@ getPathValue.__type = [
|
|
|
1037
1037
|
function setPathValue(bag, parameterPath, value) {
|
|
1038
1038
|
import_dot_prop.default.set(bag, parameterPath, value);
|
|
1039
1039
|
}
|
|
1040
|
-
|
|
1040
|
+
chunkVPMSZPFK_cjs.__name(setPathValue, "setPathValue");
|
|
1041
1041
|
setPathValue.__type = [
|
|
1042
1042
|
"bag",
|
|
1043
1043
|
"parameterPath",
|
|
@@ -1048,7 +1048,7 @@ setPathValue.__type = [
|
|
|
1048
1048
|
function deletePathValue(bag, parameterPath) {
|
|
1049
1049
|
import_dot_prop.default.delete(bag, parameterPath);
|
|
1050
1050
|
}
|
|
1051
|
-
|
|
1051
|
+
chunkVPMSZPFK_cjs.__name(deletePathValue, "deletePathValue");
|
|
1052
1052
|
deletePathValue.__type = [
|
|
1053
1053
|
"bag",
|
|
1054
1054
|
"parameterPath",
|
|
@@ -1086,7 +1086,7 @@ function humanBytes(bytes, si = false) {
|
|
|
1086
1086
|
} while (Math.abs(bytes) >= thresh && u < units.length - 1);
|
|
1087
1087
|
return bytes.toFixed(2) + " " + units[u];
|
|
1088
1088
|
}
|
|
1089
|
-
|
|
1089
|
+
chunkVPMSZPFK_cjs.__name(humanBytes, "humanBytes");
|
|
1090
1090
|
humanBytes.__type = [
|
|
1091
1091
|
"bytes",
|
|
1092
1092
|
"si",
|
|
@@ -1099,7 +1099,7 @@ function getObjectKeysSize(obj) {
|
|
|
1099
1099
|
for (let i in obj) if (obj.hasOwnProperty(i)) size2++;
|
|
1100
1100
|
return size2;
|
|
1101
1101
|
}
|
|
1102
|
-
|
|
1102
|
+
chunkVPMSZPFK_cjs.__name(getObjectKeysSize, "getObjectKeysSize");
|
|
1103
1103
|
getObjectKeysSize.__type = [
|
|
1104
1104
|
"obj",
|
|
1105
1105
|
"getObjectKeysSize",
|
|
@@ -1108,14 +1108,14 @@ getObjectKeysSize.__type = [
|
|
|
1108
1108
|
function isConstructable(fn) {
|
|
1109
1109
|
try {
|
|
1110
1110
|
new new Proxy(fn, {
|
|
1111
|
-
construct: /* @__PURE__ */
|
|
1111
|
+
construct: /* @__PURE__ */ chunkVPMSZPFK_cjs.__name(() => ({}), "construct")
|
|
1112
1112
|
})();
|
|
1113
1113
|
return true;
|
|
1114
1114
|
} catch (err) {
|
|
1115
1115
|
return false;
|
|
1116
1116
|
}
|
|
1117
1117
|
}
|
|
1118
|
-
|
|
1118
|
+
chunkVPMSZPFK_cjs.__name(isConstructable, "isConstructable");
|
|
1119
1119
|
isConstructable.__type = [
|
|
1120
1120
|
"fn",
|
|
1121
1121
|
"isConstructable",
|
|
@@ -1131,7 +1131,7 @@ function isPrototypeOfBase(prototype, base) {
|
|
|
1131
1131
|
}
|
|
1132
1132
|
return false;
|
|
1133
1133
|
}
|
|
1134
|
-
|
|
1134
|
+
chunkVPMSZPFK_cjs.__name(isPrototypeOfBase, "isPrototypeOfBase");
|
|
1135
1135
|
isPrototypeOfBase.__type = [
|
|
1136
1136
|
() => __\u03A9AbstractClassType,
|
|
1137
1137
|
"prototype",
|
|
@@ -1145,7 +1145,7 @@ function getParentClass(classType) {
|
|
|
1145
1145
|
if (parent === Object.prototype || Object.getPrototypeOf(parent) === Object.prototype) return;
|
|
1146
1146
|
return parent;
|
|
1147
1147
|
}
|
|
1148
|
-
|
|
1148
|
+
chunkVPMSZPFK_cjs.__name(getParentClass, "getParentClass");
|
|
1149
1149
|
getParentClass.__type = [
|
|
1150
1150
|
() => __\u03A9ClassType,
|
|
1151
1151
|
"classType",
|
|
@@ -1163,7 +1163,7 @@ function getInheritanceChain(classType) {
|
|
|
1163
1163
|
}
|
|
1164
1164
|
return chain;
|
|
1165
1165
|
}
|
|
1166
|
-
|
|
1166
|
+
chunkVPMSZPFK_cjs.__name(getInheritanceChain, "getInheritanceChain");
|
|
1167
1167
|
getInheritanceChain.__type = [
|
|
1168
1168
|
() => __\u03A9ClassType,
|
|
1169
1169
|
"classType",
|
|
@@ -1174,7 +1174,7 @@ getInheritanceChain.__type = [
|
|
|
1174
1174
|
function inDebugMode() {
|
|
1175
1175
|
return typeof v8debug === "object" || typeof process !== "undefined" && /--debug|--inspect/.test(process.execArgv.join(" "));
|
|
1176
1176
|
}
|
|
1177
|
-
|
|
1177
|
+
chunkVPMSZPFK_cjs.__name(inDebugMode, "inDebugMode");
|
|
1178
1178
|
inDebugMode.__type = [
|
|
1179
1179
|
"inDebugMode",
|
|
1180
1180
|
'P"/!'
|
|
@@ -1187,7 +1187,7 @@ function createDynamicClass(name, base) {
|
|
|
1187
1187
|
}
|
|
1188
1188
|
return new Function(`return class ${name} {}`)();
|
|
1189
1189
|
}
|
|
1190
|
-
|
|
1190
|
+
chunkVPMSZPFK_cjs.__name(createDynamicClass, "createDynamicClass");
|
|
1191
1191
|
createDynamicClass.__type = [
|
|
1192
1192
|
"name",
|
|
1193
1193
|
() => __\u03A9ClassType,
|
|
@@ -1199,7 +1199,7 @@ createDynamicClass.__type = [
|
|
|
1199
1199
|
function isIterable(value) {
|
|
1200
1200
|
return isArray(value) || value instanceof Set || value instanceof Map;
|
|
1201
1201
|
}
|
|
1202
|
-
|
|
1202
|
+
chunkVPMSZPFK_cjs.__name(isIterable, "isIterable");
|
|
1203
1203
|
isIterable.__type = [
|
|
1204
1204
|
"value",
|
|
1205
1205
|
"isIterable",
|
|
@@ -1208,7 +1208,7 @@ isIterable.__type = [
|
|
|
1208
1208
|
function iterableSize(value) {
|
|
1209
1209
|
return isArray(value) ? value.length : value.size || 0;
|
|
1210
1210
|
}
|
|
1211
|
-
|
|
1211
|
+
chunkVPMSZPFK_cjs.__name(iterableSize, "iterableSize");
|
|
1212
1212
|
iterableSize.__type = [
|
|
1213
1213
|
"value",
|
|
1214
1214
|
"iterableSize",
|
|
@@ -1226,7 +1226,7 @@ function getCurrentFileName() {
|
|
|
1226
1226
|
}
|
|
1227
1227
|
return path;
|
|
1228
1228
|
}
|
|
1229
|
-
|
|
1229
|
+
chunkVPMSZPFK_cjs.__name(getCurrentFileName, "getCurrentFileName");
|
|
1230
1230
|
getCurrentFileName.__type = [
|
|
1231
1231
|
"getCurrentFileName",
|
|
1232
1232
|
"P&/!"
|
|
@@ -1234,7 +1234,7 @@ getCurrentFileName.__type = [
|
|
|
1234
1234
|
function escapeRegExp(string) {
|
|
1235
1235
|
return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
1236
1236
|
}
|
|
1237
|
-
|
|
1237
|
+
chunkVPMSZPFK_cjs.__name(escapeRegExp, "escapeRegExp");
|
|
1238
1238
|
escapeRegExp.__type = [
|
|
1239
1239
|
"string",
|
|
1240
1240
|
"escapeRegExp",
|
|
@@ -1243,7 +1243,7 @@ escapeRegExp.__type = [
|
|
|
1243
1243
|
function hasProperty(object, property) {
|
|
1244
1244
|
return Object.prototype.hasOwnProperty.call(object, property);
|
|
1245
1245
|
}
|
|
1246
|
-
|
|
1246
|
+
chunkVPMSZPFK_cjs.__name(hasProperty, "hasProperty");
|
|
1247
1247
|
hasProperty.__type = [
|
|
1248
1248
|
"object",
|
|
1249
1249
|
"property",
|
|
@@ -1261,7 +1261,7 @@ function* range(startOrLength, stop = 0, step = 1) {
|
|
|
1261
1261
|
yield i;
|
|
1262
1262
|
}
|
|
1263
1263
|
}
|
|
1264
|
-
|
|
1264
|
+
chunkVPMSZPFK_cjs.__name(range, "range");
|
|
1265
1265
|
range.__type = [
|
|
1266
1266
|
"startOrLength",
|
|
1267
1267
|
"stop",
|
|
@@ -1277,7 +1277,7 @@ function rangeArray(startOrLength, stop = 0, step = 1) {
|
|
|
1277
1277
|
...range(startOrLength, stop, step)
|
|
1278
1278
|
];
|
|
1279
1279
|
}
|
|
1280
|
-
|
|
1280
|
+
chunkVPMSZPFK_cjs.__name(rangeArray, "rangeArray");
|
|
1281
1281
|
rangeArray.__type = [
|
|
1282
1282
|
"startOrLength",
|
|
1283
1283
|
"stop",
|
|
@@ -1306,7 +1306,7 @@ function zip(...args) {
|
|
|
1306
1306
|
'P"2!"2""/#'
|
|
1307
1307
|
]));
|
|
1308
1308
|
}
|
|
1309
|
-
|
|
1309
|
+
chunkVPMSZPFK_cjs.__name(zip, "zip");
|
|
1310
1310
|
zip.__type = [
|
|
1311
1311
|
"args",
|
|
1312
1312
|
"zip",
|
|
@@ -1316,7 +1316,7 @@ function forwardTypeArguments(x, y) {
|
|
|
1316
1316
|
y.\u03A9 = x.\u03A9;
|
|
1317
1317
|
x.\u03A9 = void 0;
|
|
1318
1318
|
}
|
|
1319
|
-
|
|
1319
|
+
chunkVPMSZPFK_cjs.__name(forwardTypeArguments, "forwardTypeArguments");
|
|
1320
1320
|
forwardTypeArguments.__type = [
|
|
1321
1321
|
"x",
|
|
1322
1322
|
"y",
|
|
@@ -1347,7 +1347,7 @@ ${error.errors.map(__assignType((v) => formatError(v), [
|
|
|
1347
1347
|
if (withStack && error.stack) return error.stack;
|
|
1348
1348
|
return String(error);
|
|
1349
1349
|
}
|
|
1350
|
-
|
|
1350
|
+
chunkVPMSZPFK_cjs.__name(formatError, "formatError");
|
|
1351
1351
|
formatError.__type = [
|
|
1352
1352
|
"error",
|
|
1353
1353
|
"withStack",
|
|
@@ -1360,7 +1360,7 @@ function assertInstanceOf(object, constructor) {
|
|
|
1360
1360
|
throw new Error(`Object ${getClassName(object)} is not an instance of the expected class ${getClassName(constructor)}`);
|
|
1361
1361
|
}
|
|
1362
1362
|
}
|
|
1363
|
-
|
|
1363
|
+
chunkVPMSZPFK_cjs.__name(assertInstanceOf, "assertInstanceOf");
|
|
1364
1364
|
assertInstanceOf.__type = [
|
|
1365
1365
|
"object",
|
|
1366
1366
|
"args",
|
|
@@ -1374,7 +1374,7 @@ function assertDefined(value) {
|
|
|
1374
1374
|
throw new Error(`Value is not defined`);
|
|
1375
1375
|
}
|
|
1376
1376
|
}
|
|
1377
|
-
|
|
1377
|
+
chunkVPMSZPFK_cjs.__name(assertDefined, "assertDefined");
|
|
1378
1378
|
assertDefined.__type = [
|
|
1379
1379
|
"value",
|
|
1380
1380
|
"assertDefined",
|
|
@@ -1382,12 +1382,12 @@ assertDefined.__type = [
|
|
|
1382
1382
|
];
|
|
1383
1383
|
|
|
1384
1384
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/perf.js
|
|
1385
|
-
|
|
1386
|
-
var import_to_fast_properties =
|
|
1385
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
1386
|
+
var import_to_fast_properties = chunkVPMSZPFK_cjs.__toESM(require_to_fast_properties(), 1);
|
|
1387
1387
|
function toFastProperties(obj) {
|
|
1388
1388
|
(0, import_to_fast_properties.default)(obj);
|
|
1389
1389
|
}
|
|
1390
|
-
|
|
1390
|
+
chunkVPMSZPFK_cjs.__name(toFastProperties, "toFastProperties");
|
|
1391
1391
|
toFastProperties.__type = [
|
|
1392
1392
|
"obj",
|
|
1393
1393
|
"toFastProperties",
|
|
@@ -1395,7 +1395,7 @@ toFastProperties.__type = [
|
|
|
1395
1395
|
];
|
|
1396
1396
|
|
|
1397
1397
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/decorators.js
|
|
1398
|
-
|
|
1398
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
1399
1399
|
var __\u03A9PropertyDescriptor = [
|
|
1400
1400
|
"configurable",
|
|
1401
1401
|
"enumerable",
|
|
@@ -1423,7 +1423,7 @@ function __assignType2(fn, args) {
|
|
|
1423
1423
|
fn.__type = args;
|
|
1424
1424
|
return fn;
|
|
1425
1425
|
}
|
|
1426
|
-
|
|
1426
|
+
chunkVPMSZPFK_cjs.__name(__assignType2, "__assignType");
|
|
1427
1427
|
function log() {
|
|
1428
1428
|
return __assignType2(function(target, propertyKey, descriptor) {
|
|
1429
1429
|
const orig = descriptor.value;
|
|
@@ -1450,7 +1450,7 @@ function log() {
|
|
|
1450
1450
|
'P%2!P&+J2"n#2$"/%'
|
|
1451
1451
|
]);
|
|
1452
1452
|
}
|
|
1453
|
-
|
|
1453
|
+
chunkVPMSZPFK_cjs.__name(log, "log");
|
|
1454
1454
|
log.__type = [
|
|
1455
1455
|
"log",
|
|
1456
1456
|
'P"/!'
|
|
@@ -1488,7 +1488,7 @@ function stack() {
|
|
|
1488
1488
|
'P%2!&2"P"@2$"`/%o#"2&"/%'
|
|
1489
1489
|
]);
|
|
1490
1490
|
}
|
|
1491
|
-
|
|
1491
|
+
chunkVPMSZPFK_cjs.__name(stack, "stack");
|
|
1492
1492
|
stack.__type = [
|
|
1493
1493
|
"stack",
|
|
1494
1494
|
'P"/!'
|
|
@@ -1526,14 +1526,14 @@ function singleStack() {
|
|
|
1526
1526
|
'P%2!&2"P"@2$"`/%o#"2&"/%'
|
|
1527
1527
|
]);
|
|
1528
1528
|
}
|
|
1529
|
-
|
|
1529
|
+
chunkVPMSZPFK_cjs.__name(singleStack, "singleStack");
|
|
1530
1530
|
singleStack.__type = [
|
|
1531
1531
|
"singleStack",
|
|
1532
1532
|
'P"/!'
|
|
1533
1533
|
];
|
|
1534
1534
|
|
|
1535
1535
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/enum.js
|
|
1536
|
-
|
|
1536
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
1537
1537
|
var __\u03A9Object2 = [
|
|
1538
1538
|
() => Function,
|
|
1539
1539
|
"constructor",
|
|
@@ -1559,7 +1559,7 @@ function __assignType3(fn, args) {
|
|
|
1559
1559
|
fn.__type = args;
|
|
1560
1560
|
return fn;
|
|
1561
1561
|
}
|
|
1562
|
-
|
|
1562
|
+
chunkVPMSZPFK_cjs.__name(__assignType3, "__assignType");
|
|
1563
1563
|
var cacheEnumLabels = (Map.\u03A9 = [
|
|
1564
1564
|
[
|
|
1565
1565
|
() => __\u03A9Object2,
|
|
@@ -1576,7 +1576,7 @@ function getEnumLabel(enumType, id) {
|
|
|
1576
1576
|
}
|
|
1577
1577
|
}
|
|
1578
1578
|
}
|
|
1579
|
-
|
|
1579
|
+
chunkVPMSZPFK_cjs.__name(getEnumLabel, "getEnumLabel");
|
|
1580
1580
|
getEnumLabel.__type = [
|
|
1581
1581
|
"enumType",
|
|
1582
1582
|
"id",
|
|
@@ -1595,7 +1595,7 @@ function getEnumLabels(enumDefinition) {
|
|
|
1595
1595
|
}
|
|
1596
1596
|
return value;
|
|
1597
1597
|
}
|
|
1598
|
-
|
|
1598
|
+
chunkVPMSZPFK_cjs.__name(getEnumLabels, "getEnumLabels");
|
|
1599
1599
|
getEnumLabels.__type = [
|
|
1600
1600
|
"enumDefinition",
|
|
1601
1601
|
"getEnumLabels",
|
|
@@ -1624,7 +1624,7 @@ function getEnumValues(enumDefinition) {
|
|
|
1624
1624
|
}
|
|
1625
1625
|
return value;
|
|
1626
1626
|
}
|
|
1627
|
-
|
|
1627
|
+
chunkVPMSZPFK_cjs.__name(getEnumValues, "getEnumValues");
|
|
1628
1628
|
getEnumValues.__type = [
|
|
1629
1629
|
"enumDefinition",
|
|
1630
1630
|
"getEnumValues",
|
|
@@ -1646,7 +1646,7 @@ function getEnumKeyLabelMap(enumDefinition) {
|
|
|
1646
1646
|
}
|
|
1647
1647
|
return map;
|
|
1648
1648
|
}
|
|
1649
|
-
|
|
1649
|
+
chunkVPMSZPFK_cjs.__name(getEnumKeyLabelMap, "getEnumKeyLabelMap");
|
|
1650
1650
|
getEnumKeyLabelMap.__type = [
|
|
1651
1651
|
"enumDefinition",
|
|
1652
1652
|
"getEnumKeyLabelMap",
|
|
@@ -1662,7 +1662,7 @@ function isValidEnumValue(enumDefinition, value, allowLabelsAsValue = false) {
|
|
|
1662
1662
|
const values = getEnumValues(enumDefinition);
|
|
1663
1663
|
return -1 !== values.indexOf(+value) || -1 !== values.indexOf(value) || -1 !== values.indexOf(String(value));
|
|
1664
1664
|
}
|
|
1665
|
-
|
|
1665
|
+
chunkVPMSZPFK_cjs.__name(isValidEnumValue, "isValidEnumValue");
|
|
1666
1666
|
isValidEnumValue.__type = [
|
|
1667
1667
|
"enumDefinition",
|
|
1668
1668
|
"value",
|
|
@@ -1688,7 +1688,7 @@ function getValidEnumValue(enumDefinition, value, allowLabelsAsValue = false) {
|
|
|
1688
1688
|
return String(value);
|
|
1689
1689
|
}
|
|
1690
1690
|
}
|
|
1691
|
-
|
|
1691
|
+
chunkVPMSZPFK_cjs.__name(getValidEnumValue, "getValidEnumValue");
|
|
1692
1692
|
getValidEnumValue.__type = [
|
|
1693
1693
|
"enumDefinition",
|
|
1694
1694
|
"value",
|
|
@@ -1698,10 +1698,10 @@ getValidEnumValue.__type = [
|
|
|
1698
1698
|
];
|
|
1699
1699
|
|
|
1700
1700
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/timer.js
|
|
1701
|
-
|
|
1701
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
1702
1702
|
var Timer = class {
|
|
1703
1703
|
static {
|
|
1704
|
-
|
|
1704
|
+
chunkVPMSZPFK_cjs.__name(this, "Timer");
|
|
1705
1705
|
}
|
|
1706
1706
|
constructor() {
|
|
1707
1707
|
this.timeoutTimers = [];
|
|
@@ -1735,11 +1735,11 @@ Timer.__type = [
|
|
|
1735
1735
|
];
|
|
1736
1736
|
|
|
1737
1737
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/array.js
|
|
1738
|
-
|
|
1738
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
1739
1739
|
function arrayHasItem(array, item) {
|
|
1740
1740
|
return -1 !== array.indexOf(item);
|
|
1741
1741
|
}
|
|
1742
|
-
|
|
1742
|
+
chunkVPMSZPFK_cjs.__name(arrayHasItem, "arrayHasItem");
|
|
1743
1743
|
arrayHasItem.__type = [
|
|
1744
1744
|
"array",
|
|
1745
1745
|
"item",
|
|
@@ -1751,7 +1751,7 @@ function arrayClear(array) {
|
|
|
1751
1751
|
array.length = 0;
|
|
1752
1752
|
return found;
|
|
1753
1753
|
}
|
|
1754
|
-
|
|
1754
|
+
chunkVPMSZPFK_cjs.__name(arrayClear, "arrayClear");
|
|
1755
1755
|
arrayClear.__type = [
|
|
1756
1756
|
"array",
|
|
1757
1757
|
"arrayClear",
|
|
@@ -1765,7 +1765,7 @@ function arrayRemoveItem(array, item) {
|
|
|
1765
1765
|
}
|
|
1766
1766
|
return false;
|
|
1767
1767
|
}
|
|
1768
|
-
|
|
1768
|
+
chunkVPMSZPFK_cjs.__name(arrayRemoveItem, "arrayRemoveItem");
|
|
1769
1769
|
arrayRemoveItem.__type = [
|
|
1770
1770
|
"array",
|
|
1771
1771
|
"item",
|
|
@@ -1788,7 +1788,7 @@ function arrayMoveItem(array, item, move) {
|
|
|
1788
1788
|
}
|
|
1789
1789
|
return array;
|
|
1790
1790
|
}
|
|
1791
|
-
|
|
1791
|
+
chunkVPMSZPFK_cjs.__name(arrayMoveItem, "arrayMoveItem");
|
|
1792
1792
|
arrayMoveItem.__type = [
|
|
1793
1793
|
"array",
|
|
1794
1794
|
"item",
|
|
@@ -1798,16 +1798,16 @@ arrayMoveItem.__type = [
|
|
|
1798
1798
|
];
|
|
1799
1799
|
|
|
1800
1800
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/process-locker.js
|
|
1801
|
-
|
|
1801
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
1802
1802
|
function __assignType4(fn, args) {
|
|
1803
1803
|
fn.__type = args;
|
|
1804
1804
|
return fn;
|
|
1805
1805
|
}
|
|
1806
|
-
|
|
1806
|
+
chunkVPMSZPFK_cjs.__name(__assignType4, "__assignType");
|
|
1807
1807
|
var LOCKS = {};
|
|
1808
1808
|
var ProcessLock = class {
|
|
1809
1809
|
static {
|
|
1810
|
-
|
|
1810
|
+
chunkVPMSZPFK_cjs.__name(this, "ProcessLock");
|
|
1811
1811
|
}
|
|
1812
1812
|
constructor(id) {
|
|
1813
1813
|
this.id = id;
|
|
@@ -1824,7 +1824,7 @@ var ProcessLock = class {
|
|
|
1824
1824
|
], new Promise(__assignType4((resolve, reject) => {
|
|
1825
1825
|
if (LOCKS[this.id]) {
|
|
1826
1826
|
let timeoutId;
|
|
1827
|
-
const ourTake = /* @__PURE__ */
|
|
1827
|
+
const ourTake = /* @__PURE__ */ chunkVPMSZPFK_cjs.__name(() => {
|
|
1828
1828
|
LOCKS[this.id].time = Date.now() / 1e3;
|
|
1829
1829
|
clearTimeout(timeoutId);
|
|
1830
1830
|
this.holding = true;
|
|
@@ -1917,7 +1917,7 @@ ProcessLock.__type = [
|
|
|
1917
1917
|
];
|
|
1918
1918
|
var ProcessLocker = class {
|
|
1919
1919
|
static {
|
|
1920
|
-
|
|
1920
|
+
chunkVPMSZPFK_cjs.__name(this, "ProcessLocker");
|
|
1921
1921
|
}
|
|
1922
1922
|
/**
|
|
1923
1923
|
*
|
|
@@ -1958,7 +1958,7 @@ ProcessLocker.__type = [
|
|
|
1958
1958
|
];
|
|
1959
1959
|
var Mutex = class {
|
|
1960
1960
|
static {
|
|
1961
|
-
|
|
1961
|
+
chunkVPMSZPFK_cjs.__name(this, "Mutex");
|
|
1962
1962
|
}
|
|
1963
1963
|
unlock() {
|
|
1964
1964
|
if (this.resolver) this.resolver();
|
|
@@ -1988,10 +1988,10 @@ Mutex.__type = [
|
|
|
1988
1988
|
];
|
|
1989
1989
|
|
|
1990
1990
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/network.js
|
|
1991
|
-
|
|
1991
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
1992
1992
|
var ParsedHost = class {
|
|
1993
1993
|
static {
|
|
1994
|
-
|
|
1994
|
+
chunkVPMSZPFK_cjs.__name(this, "ParsedHost");
|
|
1995
1995
|
}
|
|
1996
1996
|
constructor() {
|
|
1997
1997
|
this.host = "127.0.0.1";
|
|
@@ -2062,7 +2062,7 @@ function parseHost(hostWithIpOrUnixPath) {
|
|
|
2062
2062
|
}
|
|
2063
2063
|
return parsedHost;
|
|
2064
2064
|
}
|
|
2065
|
-
|
|
2065
|
+
chunkVPMSZPFK_cjs.__name(parseHost, "parseHost");
|
|
2066
2066
|
parseHost.__type = [
|
|
2067
2067
|
"hostWithIpOrUnixPath",
|
|
2068
2068
|
() => ParsedHost,
|
|
@@ -2071,22 +2071,22 @@ parseHost.__type = [
|
|
|
2071
2071
|
];
|
|
2072
2072
|
|
|
2073
2073
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/compiler.js
|
|
2074
|
-
|
|
2074
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
2075
2075
|
|
|
2076
2076
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/indent.js
|
|
2077
|
-
|
|
2077
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
2078
2078
|
function __assignType5(fn, args) {
|
|
2079
2079
|
fn.__type = args;
|
|
2080
2080
|
return fn;
|
|
2081
2081
|
}
|
|
2082
|
-
|
|
2082
|
+
chunkVPMSZPFK_cjs.__name(__assignType5, "__assignType");
|
|
2083
2083
|
var indent = __assignType5(function(n) {
|
|
2084
2084
|
function t(n2, t2) {
|
|
2085
2085
|
var e2, r2 = [];
|
|
2086
2086
|
for (e2 = 0; e2 < n2.length; e2++) r2.push(t2(n2[e2], e2, n2));
|
|
2087
2087
|
return r2;
|
|
2088
2088
|
}
|
|
2089
|
-
|
|
2089
|
+
chunkVPMSZPFK_cjs.__name(t, "t");
|
|
2090
2090
|
t.__type = [
|
|
2091
2091
|
"n",
|
|
2092
2092
|
"t",
|
|
@@ -2097,7 +2097,7 @@ var indent = __assignType5(function(n) {
|
|
|
2097
2097
|
for (e2 = 0; e2 < n2.length; e2++) if (r2 = t2(n2[e2], e2, n2)) return r2;
|
|
2098
2098
|
return false;
|
|
2099
2099
|
}
|
|
2100
|
-
|
|
2100
|
+
chunkVPMSZPFK_cjs.__name(e, "e");
|
|
2101
2101
|
e.__type = [
|
|
2102
2102
|
"n",
|
|
2103
2103
|
"t",
|
|
@@ -2111,7 +2111,7 @@ var indent = __assignType5(function(n) {
|
|
|
2111
2111
|
for (var a2 = 0; a2 < t2.length; a2++) t2[a2].a.indexOf(n2.toLowerCase()) !== -1 && e2.indexOf(t2[a2].b) === -1 && r2.push(t2[a2]);
|
|
2112
2112
|
return r2;
|
|
2113
2113
|
}
|
|
2114
|
-
|
|
2114
|
+
chunkVPMSZPFK_cjs.__name(r, "r");
|
|
2115
2115
|
r.__type = [
|
|
2116
2116
|
"n",
|
|
2117
2117
|
"t",
|
|
@@ -2125,7 +2125,7 @@ var indent = __assignType5(function(n) {
|
|
|
2125
2125
|
var t2 = n3.rule, e2 = E + 1 + (t2.c || 0);
|
|
2126
2126
|
n3.line = e2, Z.push(n3), t2.d && z[e2]++, t2.e && (S = r(t2.e, g)), t2.f && F.push(null), t2.callback && t2.callback(n3, z, O);
|
|
2127
2127
|
}
|
|
2128
|
-
|
|
2128
|
+
chunkVPMSZPFK_cjs.__name(h2, "h");
|
|
2129
2129
|
h2.__type = [
|
|
2130
2130
|
"n",
|
|
2131
2131
|
"h",
|
|
@@ -2139,7 +2139,7 @@ var indent = __assignType5(function(n) {
|
|
|
2139
2139
|
}
|
|
2140
2140
|
e2.e && (S = null), e2.f && F.pop(), F[F.length - 1] = n3;
|
|
2141
2141
|
}
|
|
2142
|
-
|
|
2142
|
+
chunkVPMSZPFK_cjs.__name(d2, "d");
|
|
2143
2143
|
d2.__type = [
|
|
2144
2144
|
"d",
|
|
2145
2145
|
'P"/!'
|
|
@@ -2168,7 +2168,7 @@ var indent = __assignType5(function(n) {
|
|
|
2168
2168
|
lastMatch: o3
|
|
2169
2169
|
};
|
|
2170
2170
|
}
|
|
2171
|
-
|
|
2171
|
+
chunkVPMSZPFK_cjs.__name(m2, "m");
|
|
2172
2172
|
m2.__type = [
|
|
2173
2173
|
"n",
|
|
2174
2174
|
"r",
|
|
@@ -2186,7 +2186,7 @@ var indent = __assignType5(function(n) {
|
|
|
2186
2186
|
state: l2.state
|
|
2187
2187
|
};
|
|
2188
2188
|
}
|
|
2189
|
-
|
|
2189
|
+
chunkVPMSZPFK_cjs.__name(j2, "j");
|
|
2190
2190
|
j2.__type = [
|
|
2191
2191
|
"n",
|
|
2192
2192
|
"t",
|
|
@@ -2228,7 +2228,7 @@ var indent = __assignType5(function(n) {
|
|
|
2228
2228
|
for (M = 0; M < w; M++) 1 === A[M - 1] && 1 === A[M] ? B.push(k[M]) : (H += _[M] || 0, B.push((H > 0 ? c(y, H) : "") + k[M].trim()));
|
|
2229
2229
|
return B.join("\r\n");
|
|
2230
2230
|
}
|
|
2231
|
-
|
|
2231
|
+
chunkVPMSZPFK_cjs.__name(a, "a");
|
|
2232
2232
|
a.__type = [
|
|
2233
2233
|
"n",
|
|
2234
2234
|
"a",
|
|
@@ -2239,7 +2239,7 @@ var indent = __assignType5(function(n) {
|
|
|
2239
2239
|
for (var t2 = new Array(n2), e2 = 0; e2 < n2; e2++) t2[e2] = [];
|
|
2240
2240
|
return t2;
|
|
2241
2241
|
}
|
|
2242
|
-
|
|
2242
|
+
chunkVPMSZPFK_cjs.__name(l, "l");
|
|
2243
2243
|
l.__type = [
|
|
2244
2244
|
"n",
|
|
2245
2245
|
"l",
|
|
@@ -2250,7 +2250,7 @@ var indent = __assignType5(function(n) {
|
|
|
2250
2250
|
for (var e2 = new Array(t2), r2 = 0; r2 < t2; r2++) e2[r2] = 0;
|
|
2251
2251
|
return e2;
|
|
2252
2252
|
}
|
|
2253
|
-
|
|
2253
|
+
chunkVPMSZPFK_cjs.__name(s, "s");
|
|
2254
2254
|
s.__type = [
|
|
2255
2255
|
"t",
|
|
2256
2256
|
"s",
|
|
@@ -2260,7 +2260,7 @@ var indent = __assignType5(function(n) {
|
|
|
2260
2260
|
for (var t2 = s(n2.length), e2 = 0; e2 < n2.length; e2++) t2[e2] = n2[e2];
|
|
2261
2261
|
return t2;
|
|
2262
2262
|
}
|
|
2263
|
-
|
|
2263
|
+
chunkVPMSZPFK_cjs.__name(i, "i");
|
|
2264
2264
|
i.__type = [
|
|
2265
2265
|
"n",
|
|
2266
2266
|
"i",
|
|
@@ -2269,7 +2269,7 @@ var indent = __assignType5(function(n) {
|
|
|
2269
2269
|
function c(n2, t2) {
|
|
2270
2270
|
return new Array(t2 + 1).join(n2);
|
|
2271
2271
|
}
|
|
2272
|
-
|
|
2272
|
+
chunkVPMSZPFK_cjs.__name(c, "c");
|
|
2273
2273
|
c.__type = [
|
|
2274
2274
|
"n",
|
|
2275
2275
|
"t",
|
|
@@ -2279,7 +2279,7 @@ var indent = __assignType5(function(n) {
|
|
|
2279
2279
|
function u(n2) {
|
|
2280
2280
|
return n2.replace(/\\(u[0-9A-Za-z]{4}|u\{[0-9A-Za-z]{1,6}]\}|x[0-9A-Za-z]{2}|.)/g, "0");
|
|
2281
2281
|
}
|
|
2282
|
-
|
|
2282
|
+
chunkVPMSZPFK_cjs.__name(u, "u");
|
|
2283
2283
|
u.__type = [
|
|
2284
2284
|
"n",
|
|
2285
2285
|
"u",
|
|
@@ -2289,7 +2289,7 @@ var indent = __assignType5(function(n) {
|
|
|
2289
2289
|
var r2 = n2.lastMatch;
|
|
2290
2290
|
r2 && "=" === r2.rule.b && e2[n2.line].push(-r2.line);
|
|
2291
2291
|
}
|
|
2292
|
-
|
|
2292
|
+
chunkVPMSZPFK_cjs.__name(o, "o");
|
|
2293
2293
|
o.__type = [
|
|
2294
2294
|
"n",
|
|
2295
2295
|
"t",
|
|
@@ -2307,7 +2307,7 @@ var indent = __assignType5(function(n) {
|
|
|
2307
2307
|
} else a2 = n2.search(/[^\s\r\n\{\(\[]/), e2.newline = a2 !== -1 && (a2 <= r2.relativeIndex || r2.relativeIndex === -1);
|
|
2308
2308
|
return null;
|
|
2309
2309
|
}
|
|
2310
|
-
|
|
2310
|
+
chunkVPMSZPFK_cjs.__name(h, "h");
|
|
2311
2311
|
h.__type = [
|
|
2312
2312
|
"n",
|
|
2313
2313
|
"t",
|
|
@@ -2334,7 +2334,7 @@ var indent = __assignType5(function(n) {
|
|
|
2334
2334
|
state: r2
|
|
2335
2335
|
};
|
|
2336
2336
|
}
|
|
2337
|
-
|
|
2337
|
+
chunkVPMSZPFK_cjs.__name(f, "f");
|
|
2338
2338
|
f.__type = [
|
|
2339
2339
|
"n",
|
|
2340
2340
|
"t",
|
|
@@ -2916,7 +2916,7 @@ var __\u03A9Partial = [
|
|
|
2916
2916
|
var indentCode = ("undefined" !== typeof process && process.env?.DEBUG || "").includes("deepkit");
|
|
2917
2917
|
var CompilerContext = class {
|
|
2918
2918
|
static {
|
|
2919
|
-
|
|
2919
|
+
chunkVPMSZPFK_cjs.__name(this, "CompilerContext");
|
|
2920
2920
|
}
|
|
2921
2921
|
constructor(config = {}) {
|
|
2922
2922
|
this.context = (Map.\u03A9 = [
|
|
@@ -3120,12 +3120,12 @@ CompilerContext.__type = [
|
|
|
3120
3120
|
];
|
|
3121
3121
|
|
|
3122
3122
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/string.js
|
|
3123
|
-
|
|
3123
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
3124
3124
|
function __assignType6(fn, args) {
|
|
3125
3125
|
fn.__type = args;
|
|
3126
3126
|
return fn;
|
|
3127
3127
|
}
|
|
3128
|
-
|
|
3128
|
+
chunkVPMSZPFK_cjs.__name(__assignType6, "__assignType");
|
|
3129
3129
|
function indent2(indentation, prefix = "") {
|
|
3130
3130
|
return __assignType6((str = "") => {
|
|
3131
3131
|
return " ".repeat(indentation) + str.replace(/\n/g, "\n" + " ".repeat(indentation) + prefix);
|
|
@@ -3136,7 +3136,7 @@ function indent2(indentation, prefix = "") {
|
|
|
3136
3136
|
'P&2!>""/#'
|
|
3137
3137
|
]);
|
|
3138
3138
|
}
|
|
3139
|
-
|
|
3139
|
+
chunkVPMSZPFK_cjs.__name(indent2, "indent");
|
|
3140
3140
|
indent2.__type = [
|
|
3141
3141
|
"indentation",
|
|
3142
3142
|
"prefix",
|
|
@@ -3147,7 +3147,7 @@ indent2.__type = [
|
|
|
3147
3147
|
function capitalize(string) {
|
|
3148
3148
|
return string.charAt(0).toUpperCase() + string.slice(1);
|
|
3149
3149
|
}
|
|
3150
|
-
|
|
3150
|
+
chunkVPMSZPFK_cjs.__name(capitalize, "capitalize");
|
|
3151
3151
|
capitalize.__type = [
|
|
3152
3152
|
"string",
|
|
3153
3153
|
"capitalize",
|
|
@@ -3155,7 +3155,7 @@ capitalize.__type = [
|
|
|
3155
3155
|
];
|
|
3156
3156
|
|
|
3157
3157
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/emitter.js
|
|
3158
|
-
|
|
3158
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
3159
3159
|
var __\u03A9AsyncSubscriber = [
|
|
3160
3160
|
"T",
|
|
3161
3161
|
"event",
|
|
@@ -3185,7 +3185,7 @@ var __\u03A9EventSubscription = [
|
|
|
3185
3185
|
var asyncId = 0;
|
|
3186
3186
|
var EmitterEvent = class {
|
|
3187
3187
|
static {
|
|
3188
|
-
|
|
3188
|
+
chunkVPMSZPFK_cjs.__name(this, "EmitterEvent");
|
|
3189
3189
|
}
|
|
3190
3190
|
constructor() {
|
|
3191
3191
|
this.id = asyncId++;
|
|
@@ -3226,7 +3226,7 @@ EmitterEvent.__type = [
|
|
|
3226
3226
|
];
|
|
3227
3227
|
var EventEmitter = class {
|
|
3228
3228
|
static {
|
|
3229
|
-
|
|
3229
|
+
chunkVPMSZPFK_cjs.__name(this, "EventEmitter");
|
|
3230
3230
|
}
|
|
3231
3231
|
constructor(parent) {
|
|
3232
3232
|
this.parent = parent;
|
|
@@ -3235,7 +3235,7 @@ var EventEmitter = class {
|
|
|
3235
3235
|
subscribe(callback) {
|
|
3236
3236
|
this.subscribers.push(callback);
|
|
3237
3237
|
return {
|
|
3238
|
-
unsubscribe: /* @__PURE__ */
|
|
3238
|
+
unsubscribe: /* @__PURE__ */ chunkVPMSZPFK_cjs.__name(() => {
|
|
3239
3239
|
arrayRemoveItem(this.subscribers, callback);
|
|
3240
3240
|
}, "unsubscribe")
|
|
3241
3241
|
};
|
|
@@ -3274,7 +3274,7 @@ EventEmitter.__type = [
|
|
|
3274
3274
|
];
|
|
3275
3275
|
var AsyncEventEmitter = class {
|
|
3276
3276
|
static {
|
|
3277
|
-
|
|
3277
|
+
chunkVPMSZPFK_cjs.__name(this, "AsyncEventEmitter");
|
|
3278
3278
|
}
|
|
3279
3279
|
constructor(parent) {
|
|
3280
3280
|
this.parent = parent;
|
|
@@ -3283,7 +3283,7 @@ var AsyncEventEmitter = class {
|
|
|
3283
3283
|
subscribe(callback) {
|
|
3284
3284
|
this.subscribers.push(callback);
|
|
3285
3285
|
return {
|
|
3286
|
-
unsubscribe: /* @__PURE__ */
|
|
3286
|
+
unsubscribe: /* @__PURE__ */ chunkVPMSZPFK_cjs.__name(() => {
|
|
3287
3287
|
arrayRemoveItem(this.subscribers, callback);
|
|
3288
3288
|
}, "unsubscribe")
|
|
3289
3289
|
};
|
|
@@ -3322,12 +3322,12 @@ AsyncEventEmitter.__type = [
|
|
|
3322
3322
|
];
|
|
3323
3323
|
|
|
3324
3324
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/reactive.js
|
|
3325
|
-
|
|
3325
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
3326
3326
|
function __assignType7(fn, args) {
|
|
3327
3327
|
fn.__type = args;
|
|
3328
3328
|
return fn;
|
|
3329
3329
|
}
|
|
3330
|
-
|
|
3330
|
+
chunkVPMSZPFK_cjs.__name(__assignType7, "__assignType");
|
|
3331
3331
|
var nextTick = typeof requestAnimationFrame !== "undefined" ? __assignType7((cb) => requestAnimationFrame(cb), [
|
|
3332
3332
|
"",
|
|
3333
3333
|
"cb",
|
|
@@ -3364,7 +3364,7 @@ function throttleTime(call, cps = 5) {
|
|
|
3364
3364
|
nextTick(tick);
|
|
3365
3365
|
}
|
|
3366
3366
|
}
|
|
3367
|
-
|
|
3367
|
+
chunkVPMSZPFK_cjs.__name(tick, "tick");
|
|
3368
3368
|
tick.__type = [
|
|
3369
3369
|
"tick",
|
|
3370
3370
|
'P"/!'
|
|
@@ -3379,7 +3379,7 @@ function throttleTime(call, cps = 5) {
|
|
|
3379
3379
|
'P"@2!"/"'
|
|
3380
3380
|
]);
|
|
3381
3381
|
}
|
|
3382
|
-
|
|
3382
|
+
chunkVPMSZPFK_cjs.__name(throttleTime, "throttleTime");
|
|
3383
3383
|
throttleTime.__type = [
|
|
3384
3384
|
() => Function,
|
|
3385
3385
|
"call",
|
|
@@ -3403,7 +3403,7 @@ function bufferedGate(callback) {
|
|
|
3403
3403
|
q.splice(0, q.length);
|
|
3404
3404
|
});
|
|
3405
3405
|
return {
|
|
3406
|
-
activate: /* @__PURE__ */
|
|
3406
|
+
activate: /* @__PURE__ */ chunkVPMSZPFK_cjs.__name(() => {
|
|
3407
3407
|
activated = true;
|
|
3408
3408
|
throttled();
|
|
3409
3409
|
}, "activate"),
|
|
@@ -3421,7 +3421,7 @@ function bufferedGate(callback) {
|
|
|
3421
3421
|
])
|
|
3422
3422
|
};
|
|
3423
3423
|
}
|
|
3424
|
-
|
|
3424
|
+
chunkVPMSZPFK_cjs.__name(bufferedGate, "bufferedGate");
|
|
3425
3425
|
bufferedGate.__type = [
|
|
3426
3426
|
"arg",
|
|
3427
3427
|
"",
|
|
@@ -3431,7 +3431,7 @@ bufferedGate.__type = [
|
|
|
3431
3431
|
];
|
|
3432
3432
|
|
|
3433
3433
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/reflection.js
|
|
3434
|
-
|
|
3434
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
3435
3435
|
var COMMENTS = /((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg;
|
|
3436
3436
|
var DEFAULT_PARAMS = /=[^,]+/mg;
|
|
3437
3437
|
var FAT_ARROWS = /=>.*$/mg;
|
|
@@ -3449,7 +3449,7 @@ function extractParameters(fn) {
|
|
|
3449
3449
|
return fn.slice(fn.indexOf("(") + 1, fn.indexOf("{")).match(/([^\(\)\{\}\s,]+)/g) || [];
|
|
3450
3450
|
}
|
|
3451
3451
|
}
|
|
3452
|
-
|
|
3452
|
+
chunkVPMSZPFK_cjs.__name(extractParameters, "extractParameters");
|
|
3453
3453
|
extractParameters.__type = [
|
|
3454
3454
|
() => Function,
|
|
3455
3455
|
() => __\u03A9ClassType,
|
|
@@ -3477,7 +3477,7 @@ function extractMethodBody(classCode, name) {
|
|
|
3477
3477
|
}
|
|
3478
3478
|
return methodCode;
|
|
3479
3479
|
}
|
|
3480
|
-
|
|
3480
|
+
chunkVPMSZPFK_cjs.__name(extractMethodBody, "extractMethodBody");
|
|
3481
3481
|
extractMethodBody.__type = [
|
|
3482
3482
|
"classCode",
|
|
3483
3483
|
"name",
|
|
@@ -3519,7 +3519,7 @@ function removeStrings(code) {
|
|
|
3519
3519
|
}
|
|
3520
3520
|
return result;
|
|
3521
3521
|
}
|
|
3522
|
-
|
|
3522
|
+
chunkVPMSZPFK_cjs.__name(removeStrings, "removeStrings");
|
|
3523
3523
|
removeStrings.__type = [
|
|
3524
3524
|
"code",
|
|
3525
3525
|
"removeStrings",
|
|
@@ -3527,16 +3527,16 @@ removeStrings.__type = [
|
|
|
3527
3527
|
];
|
|
3528
3528
|
|
|
3529
3529
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/url.js
|
|
3530
|
-
|
|
3530
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
3531
3531
|
function __assignType8(fn, args) {
|
|
3532
3532
|
fn.__type = args;
|
|
3533
3533
|
return fn;
|
|
3534
3534
|
}
|
|
3535
|
-
|
|
3535
|
+
chunkVPMSZPFK_cjs.__name(__assignType8, "__assignType");
|
|
3536
3536
|
function removeSlash(v) {
|
|
3537
3537
|
return v.replace(/(^\/+)|(\/+$)/g, "");
|
|
3538
3538
|
}
|
|
3539
|
-
|
|
3539
|
+
chunkVPMSZPFK_cjs.__name(removeSlash, "removeSlash");
|
|
3540
3540
|
removeSlash.__type = [
|
|
3541
3541
|
"v",
|
|
3542
3542
|
"removeSlash",
|
|
@@ -3556,7 +3556,7 @@ function urlJoin(...path) {
|
|
|
3556
3556
|
'P"2!"/"'
|
|
3557
3557
|
])).join("/") + (trailingSlash ? "/" : "");
|
|
3558
3558
|
}
|
|
3559
|
-
|
|
3559
|
+
chunkVPMSZPFK_cjs.__name(urlJoin, "urlJoin");
|
|
3560
3560
|
urlJoin.__type = [
|
|
3561
3561
|
"path",
|
|
3562
3562
|
"urlJoin",
|
|
@@ -3564,7 +3564,7 @@ urlJoin.__type = [
|
|
|
3564
3564
|
];
|
|
3565
3565
|
|
|
3566
3566
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/types.js
|
|
3567
|
-
|
|
3567
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
3568
3568
|
var __\u03A9TypeAnnotation = [
|
|
3569
3569
|
"T",
|
|
3570
3570
|
"Options",
|
|
@@ -3587,12 +3587,12 @@ var __\u03A9Inject = [
|
|
|
3587
3587
|
];
|
|
3588
3588
|
|
|
3589
3589
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/buffer.js
|
|
3590
|
-
|
|
3590
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
3591
3591
|
function __assignType9(fn, args) {
|
|
3592
3592
|
fn.__type = args;
|
|
3593
3593
|
return fn;
|
|
3594
3594
|
}
|
|
3595
|
-
|
|
3595
|
+
chunkVPMSZPFK_cjs.__name(__assignType9, "__assignType");
|
|
3596
3596
|
var createBuffer = "undefined" !== typeof Buffer && "function" === typeof Buffer.allocUnsafe ? Buffer.allocUnsafe : __assignType9((size2) => new Uint8Array(size2), [
|
|
3597
3597
|
"size",
|
|
3598
3598
|
"",
|
|
@@ -3611,7 +3611,7 @@ function bufferConcat(chunks, length) {
|
|
|
3611
3611
|
}
|
|
3612
3612
|
return result;
|
|
3613
3613
|
}
|
|
3614
|
-
|
|
3614
|
+
chunkVPMSZPFK_cjs.__name(bufferConcat, "bufferConcat");
|
|
3615
3615
|
bufferConcat.__type = [
|
|
3616
3616
|
"chunks",
|
|
3617
3617
|
"length",
|
|
@@ -3632,7 +3632,7 @@ function bufferToString(buffer) {
|
|
|
3632
3632
|
if ("string" === typeof buffer) return buffer;
|
|
3633
3633
|
return uint8ArrayToUtf8(buffer);
|
|
3634
3634
|
}
|
|
3635
|
-
|
|
3635
|
+
chunkVPMSZPFK_cjs.__name(bufferToString, "bufferToString");
|
|
3636
3636
|
bufferToString.__type = [
|
|
3637
3637
|
"buffer",
|
|
3638
3638
|
"bufferToString",
|
|
@@ -3647,7 +3647,7 @@ function nativeBase64ToUint8Array(base64) {
|
|
|
3647
3647
|
}
|
|
3648
3648
|
return array;
|
|
3649
3649
|
}
|
|
3650
|
-
|
|
3650
|
+
chunkVPMSZPFK_cjs.__name(nativeBase64ToUint8Array, "nativeBase64ToUint8Array");
|
|
3651
3651
|
nativeBase64ToUint8Array.__type = [
|
|
3652
3652
|
"base64",
|
|
3653
3653
|
"nativeBase64ToUint8Array",
|
|
@@ -3660,18 +3660,18 @@ var base64ToUint8Array = "undefined" === typeof Buffer ? nativeBase64ToUint8Arra
|
|
|
3660
3660
|
]);
|
|
3661
3661
|
|
|
3662
3662
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/src/path.js
|
|
3663
|
-
|
|
3663
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
3664
3664
|
function __assignType10(fn, args) {
|
|
3665
3665
|
fn.__type = args;
|
|
3666
3666
|
return fn;
|
|
3667
3667
|
}
|
|
3668
|
-
|
|
3668
|
+
chunkVPMSZPFK_cjs.__name(__assignType10, "__assignType");
|
|
3669
3669
|
function pathNormalize(path) {
|
|
3670
3670
|
path = path[0] !== "/" ? "/" + path : path;
|
|
3671
3671
|
path = path.length > 1 && path[path.length - 1] === "/" ? path.slice(0, -1) : path;
|
|
3672
3672
|
return path.replace(/\/+/g, "/");
|
|
3673
3673
|
}
|
|
3674
|
-
|
|
3674
|
+
chunkVPMSZPFK_cjs.__name(pathNormalize, "pathNormalize");
|
|
3675
3675
|
pathNormalize.__type = [
|
|
3676
3676
|
"path",
|
|
3677
3677
|
"pathNormalize",
|
|
@@ -3682,7 +3682,7 @@ function pathDirectory(path) {
|
|
|
3682
3682
|
const lastSlash = path.lastIndexOf("/");
|
|
3683
3683
|
return lastSlash <= 0 ? "/" : path.slice(0, lastSlash);
|
|
3684
3684
|
}
|
|
3685
|
-
|
|
3685
|
+
chunkVPMSZPFK_cjs.__name(pathDirectory, "pathDirectory");
|
|
3686
3686
|
pathDirectory.__type = [
|
|
3687
3687
|
"path",
|
|
3688
3688
|
"pathDirectory",
|
|
@@ -3692,7 +3692,7 @@ function pathBasename(path) {
|
|
|
3692
3692
|
const lastSlash = path.lastIndexOf("/");
|
|
3693
3693
|
return lastSlash === -1 ? path : path.slice(lastSlash + 1);
|
|
3694
3694
|
}
|
|
3695
|
-
|
|
3695
|
+
chunkVPMSZPFK_cjs.__name(pathBasename, "pathBasename");
|
|
3696
3696
|
pathBasename.__type = [
|
|
3697
3697
|
"path",
|
|
3698
3698
|
"pathBasename",
|
|
@@ -3703,7 +3703,7 @@ function pathExtension(path) {
|
|
|
3703
3703
|
const lastDot = basename.lastIndexOf(".");
|
|
3704
3704
|
return lastDot === -1 ? "" : basename.slice(lastDot + 1);
|
|
3705
3705
|
}
|
|
3706
|
-
|
|
3706
|
+
chunkVPMSZPFK_cjs.__name(pathExtension, "pathExtension");
|
|
3707
3707
|
pathExtension.__type = [
|
|
3708
3708
|
"path",
|
|
3709
3709
|
"pathExtension",
|
|
@@ -3720,7 +3720,7 @@ function pathJoin(...paths) {
|
|
|
3720
3720
|
'P"2!"/"'
|
|
3721
3721
|
])).join("/");
|
|
3722
3722
|
}
|
|
3723
|
-
|
|
3723
|
+
chunkVPMSZPFK_cjs.__name(pathJoin, "pathJoin");
|
|
3724
3724
|
pathJoin.__type = [
|
|
3725
3725
|
"paths",
|
|
3726
3726
|
"pathJoin",
|
|
@@ -3728,7 +3728,7 @@ pathJoin.__type = [
|
|
|
3728
3728
|
];
|
|
3729
3729
|
|
|
3730
3730
|
// ../../node_modules/.pnpm/@deepkit+core@1.0.5_patch_hash=8c3beca4372c6a8941162780ddd0f977ef3d461c2018f0809f86f416260ba440/node_modules/@deepkit/core/dist/esm/index.js
|
|
3731
|
-
|
|
3731
|
+
chunkVPMSZPFK_cjs.init_cjs_shims();
|
|
3732
3732
|
|
|
3733
3733
|
exports.AsyncEventEmitter = AsyncEventEmitter;
|
|
3734
3734
|
exports.AsyncFunction = AsyncFunction;
|