@base-web-kits/base-tools-web 1.2.8 → 1.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +417 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +414 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -540,8 +540,237 @@ function preloadImage(src) {
|
|
|
540
540
|
});
|
|
541
541
|
}
|
|
542
542
|
|
|
543
|
-
//
|
|
544
|
-
|
|
543
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/predicate/isPrimitive.mjs
|
|
544
|
+
function isPrimitive(value) {
|
|
545
|
+
return value == null || typeof value !== "object" && typeof value !== "function";
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/predicate/isTypedArray.mjs
|
|
549
|
+
function isTypedArray(x) {
|
|
550
|
+
return ArrayBuffer.isView(x) && !(x instanceof DataView);
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/compat/_internal/getSymbols.mjs
|
|
554
|
+
function getSymbols(object) {
|
|
555
|
+
return Object.getOwnPropertySymbols(object).filter((symbol) => Object.prototype.propertyIsEnumerable.call(object, symbol));
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/compat/_internal/getTag.mjs
|
|
559
|
+
function getTag(value) {
|
|
560
|
+
if (value == null) {
|
|
561
|
+
return value === void 0 ? "[object Undefined]" : "[object Null]";
|
|
562
|
+
}
|
|
563
|
+
return Object.prototype.toString.call(value);
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/compat/_internal/tags.mjs
|
|
567
|
+
var regexpTag = "[object RegExp]";
|
|
568
|
+
var stringTag = "[object String]";
|
|
569
|
+
var numberTag = "[object Number]";
|
|
570
|
+
var booleanTag = "[object Boolean]";
|
|
571
|
+
var argumentsTag = "[object Arguments]";
|
|
572
|
+
var symbolTag = "[object Symbol]";
|
|
573
|
+
var dateTag = "[object Date]";
|
|
574
|
+
var mapTag = "[object Map]";
|
|
575
|
+
var setTag = "[object Set]";
|
|
576
|
+
var arrayTag = "[object Array]";
|
|
577
|
+
var arrayBufferTag = "[object ArrayBuffer]";
|
|
578
|
+
var objectTag = "[object Object]";
|
|
579
|
+
var dataViewTag = "[object DataView]";
|
|
580
|
+
var uint8ArrayTag = "[object Uint8Array]";
|
|
581
|
+
var uint8ClampedArrayTag = "[object Uint8ClampedArray]";
|
|
582
|
+
var uint16ArrayTag = "[object Uint16Array]";
|
|
583
|
+
var uint32ArrayTag = "[object Uint32Array]";
|
|
584
|
+
var int8ArrayTag = "[object Int8Array]";
|
|
585
|
+
var int16ArrayTag = "[object Int16Array]";
|
|
586
|
+
var int32ArrayTag = "[object Int32Array]";
|
|
587
|
+
var float32ArrayTag = "[object Float32Array]";
|
|
588
|
+
var float64ArrayTag = "[object Float64Array]";
|
|
589
|
+
|
|
590
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/object/cloneDeepWith.mjs
|
|
591
|
+
function cloneDeepWithImpl(valueToClone, keyToClone, objectToClone, stack = /* @__PURE__ */ new Map(), cloneValue = void 0) {
|
|
592
|
+
const cloned = cloneValue == null ? void 0 : cloneValue(valueToClone, keyToClone, objectToClone, stack);
|
|
593
|
+
if (cloned !== void 0) {
|
|
594
|
+
return cloned;
|
|
595
|
+
}
|
|
596
|
+
if (isPrimitive(valueToClone)) {
|
|
597
|
+
return valueToClone;
|
|
598
|
+
}
|
|
599
|
+
if (stack.has(valueToClone)) {
|
|
600
|
+
return stack.get(valueToClone);
|
|
601
|
+
}
|
|
602
|
+
if (Array.isArray(valueToClone)) {
|
|
603
|
+
const result = new Array(valueToClone.length);
|
|
604
|
+
stack.set(valueToClone, result);
|
|
605
|
+
for (let i = 0; i < valueToClone.length; i++) {
|
|
606
|
+
result[i] = cloneDeepWithImpl(valueToClone[i], i, objectToClone, stack, cloneValue);
|
|
607
|
+
}
|
|
608
|
+
if (Object.hasOwn(valueToClone, "index")) {
|
|
609
|
+
result.index = valueToClone.index;
|
|
610
|
+
}
|
|
611
|
+
if (Object.hasOwn(valueToClone, "input")) {
|
|
612
|
+
result.input = valueToClone.input;
|
|
613
|
+
}
|
|
614
|
+
return result;
|
|
615
|
+
}
|
|
616
|
+
if (valueToClone instanceof Date) {
|
|
617
|
+
return new Date(valueToClone.getTime());
|
|
618
|
+
}
|
|
619
|
+
if (valueToClone instanceof RegExp) {
|
|
620
|
+
const result = new RegExp(valueToClone.source, valueToClone.flags);
|
|
621
|
+
result.lastIndex = valueToClone.lastIndex;
|
|
622
|
+
return result;
|
|
623
|
+
}
|
|
624
|
+
if (valueToClone instanceof Map) {
|
|
625
|
+
const result = /* @__PURE__ */ new Map();
|
|
626
|
+
stack.set(valueToClone, result);
|
|
627
|
+
for (const [key, value] of valueToClone) {
|
|
628
|
+
result.set(key, cloneDeepWithImpl(value, key, objectToClone, stack, cloneValue));
|
|
629
|
+
}
|
|
630
|
+
return result;
|
|
631
|
+
}
|
|
632
|
+
if (valueToClone instanceof Set) {
|
|
633
|
+
const result = /* @__PURE__ */ new Set();
|
|
634
|
+
stack.set(valueToClone, result);
|
|
635
|
+
for (const value of valueToClone) {
|
|
636
|
+
result.add(cloneDeepWithImpl(value, void 0, objectToClone, stack, cloneValue));
|
|
637
|
+
}
|
|
638
|
+
return result;
|
|
639
|
+
}
|
|
640
|
+
if (typeof Buffer !== "undefined" && Buffer.isBuffer(valueToClone)) {
|
|
641
|
+
return valueToClone.subarray();
|
|
642
|
+
}
|
|
643
|
+
if (isTypedArray(valueToClone)) {
|
|
644
|
+
const result = new (Object.getPrototypeOf(valueToClone)).constructor(valueToClone.length);
|
|
645
|
+
stack.set(valueToClone, result);
|
|
646
|
+
for (let i = 0; i < valueToClone.length; i++) {
|
|
647
|
+
result[i] = cloneDeepWithImpl(valueToClone[i], i, objectToClone, stack, cloneValue);
|
|
648
|
+
}
|
|
649
|
+
return result;
|
|
650
|
+
}
|
|
651
|
+
if (valueToClone instanceof ArrayBuffer || typeof SharedArrayBuffer !== "undefined" && valueToClone instanceof SharedArrayBuffer) {
|
|
652
|
+
return valueToClone.slice(0);
|
|
653
|
+
}
|
|
654
|
+
if (valueToClone instanceof DataView) {
|
|
655
|
+
const result = new DataView(valueToClone.buffer.slice(0), valueToClone.byteOffset, valueToClone.byteLength);
|
|
656
|
+
stack.set(valueToClone, result);
|
|
657
|
+
copyProperties(result, valueToClone, objectToClone, stack, cloneValue);
|
|
658
|
+
return result;
|
|
659
|
+
}
|
|
660
|
+
if (typeof File !== "undefined" && valueToClone instanceof File) {
|
|
661
|
+
const result = new File([valueToClone], valueToClone.name, {
|
|
662
|
+
type: valueToClone.type
|
|
663
|
+
});
|
|
664
|
+
stack.set(valueToClone, result);
|
|
665
|
+
copyProperties(result, valueToClone, objectToClone, stack, cloneValue);
|
|
666
|
+
return result;
|
|
667
|
+
}
|
|
668
|
+
if (typeof Blob !== "undefined" && valueToClone instanceof Blob) {
|
|
669
|
+
const result = new Blob([valueToClone], { type: valueToClone.type });
|
|
670
|
+
stack.set(valueToClone, result);
|
|
671
|
+
copyProperties(result, valueToClone, objectToClone, stack, cloneValue);
|
|
672
|
+
return result;
|
|
673
|
+
}
|
|
674
|
+
if (valueToClone instanceof Error) {
|
|
675
|
+
const result = new valueToClone.constructor();
|
|
676
|
+
stack.set(valueToClone, result);
|
|
677
|
+
result.message = valueToClone.message;
|
|
678
|
+
result.name = valueToClone.name;
|
|
679
|
+
result.stack = valueToClone.stack;
|
|
680
|
+
result.cause = valueToClone.cause;
|
|
681
|
+
copyProperties(result, valueToClone, objectToClone, stack, cloneValue);
|
|
682
|
+
return result;
|
|
683
|
+
}
|
|
684
|
+
if (valueToClone instanceof Boolean) {
|
|
685
|
+
const result = new Boolean(valueToClone.valueOf());
|
|
686
|
+
stack.set(valueToClone, result);
|
|
687
|
+
copyProperties(result, valueToClone, objectToClone, stack, cloneValue);
|
|
688
|
+
return result;
|
|
689
|
+
}
|
|
690
|
+
if (valueToClone instanceof Number) {
|
|
691
|
+
const result = new Number(valueToClone.valueOf());
|
|
692
|
+
stack.set(valueToClone, result);
|
|
693
|
+
copyProperties(result, valueToClone, objectToClone, stack, cloneValue);
|
|
694
|
+
return result;
|
|
695
|
+
}
|
|
696
|
+
if (valueToClone instanceof String) {
|
|
697
|
+
const result = new String(valueToClone.valueOf());
|
|
698
|
+
stack.set(valueToClone, result);
|
|
699
|
+
copyProperties(result, valueToClone, objectToClone, stack, cloneValue);
|
|
700
|
+
return result;
|
|
701
|
+
}
|
|
702
|
+
if (typeof valueToClone === "object" && isCloneableObject(valueToClone)) {
|
|
703
|
+
const result = Object.create(Object.getPrototypeOf(valueToClone));
|
|
704
|
+
stack.set(valueToClone, result);
|
|
705
|
+
copyProperties(result, valueToClone, objectToClone, stack, cloneValue);
|
|
706
|
+
return result;
|
|
707
|
+
}
|
|
708
|
+
return valueToClone;
|
|
709
|
+
}
|
|
710
|
+
function copyProperties(target, source, objectToClone = target, stack, cloneValue) {
|
|
711
|
+
const keys = [...Object.keys(source), ...getSymbols(source)];
|
|
712
|
+
for (let i = 0; i < keys.length; i++) {
|
|
713
|
+
const key = keys[i];
|
|
714
|
+
const descriptor = Object.getOwnPropertyDescriptor(target, key);
|
|
715
|
+
if (descriptor == null || descriptor.writable) {
|
|
716
|
+
target[key] = cloneDeepWithImpl(source[key], key, objectToClone, stack, cloneValue);
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
}
|
|
720
|
+
function isCloneableObject(object) {
|
|
721
|
+
switch (getTag(object)) {
|
|
722
|
+
case argumentsTag:
|
|
723
|
+
case arrayTag:
|
|
724
|
+
case arrayBufferTag:
|
|
725
|
+
case dataViewTag:
|
|
726
|
+
case booleanTag:
|
|
727
|
+
case dateTag:
|
|
728
|
+
case float32ArrayTag:
|
|
729
|
+
case float64ArrayTag:
|
|
730
|
+
case int8ArrayTag:
|
|
731
|
+
case int16ArrayTag:
|
|
732
|
+
case int32ArrayTag:
|
|
733
|
+
case mapTag:
|
|
734
|
+
case numberTag:
|
|
735
|
+
case objectTag:
|
|
736
|
+
case regexpTag:
|
|
737
|
+
case setTag:
|
|
738
|
+
case stringTag:
|
|
739
|
+
case symbolTag:
|
|
740
|
+
case uint8ArrayTag:
|
|
741
|
+
case uint8ClampedArrayTag:
|
|
742
|
+
case uint16ArrayTag:
|
|
743
|
+
case uint32ArrayTag: {
|
|
744
|
+
return true;
|
|
745
|
+
}
|
|
746
|
+
default: {
|
|
747
|
+
return false;
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/object/cloneDeep.mjs
|
|
753
|
+
function cloneDeep(obj) {
|
|
754
|
+
return cloneDeepWithImpl(obj, void 0, obj, /* @__PURE__ */ new Map(), void 0);
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/predicate/isPlainObject.mjs
|
|
758
|
+
function isPlainObject(value) {
|
|
759
|
+
if (!value || typeof value !== "object") {
|
|
760
|
+
return false;
|
|
761
|
+
}
|
|
762
|
+
const proto = Object.getPrototypeOf(value);
|
|
763
|
+
const hasObjectPrototype = proto === null || proto === Object.prototype || Object.getPrototypeOf(proto) === null;
|
|
764
|
+
if (!hasObjectPrototype) {
|
|
765
|
+
return false;
|
|
766
|
+
}
|
|
767
|
+
return Object.prototype.toString.call(value) === "[object Object]";
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/_internal/isUnsafeProperty.mjs
|
|
771
|
+
function isUnsafeProperty(key) {
|
|
772
|
+
return key === "__proto__";
|
|
773
|
+
}
|
|
545
774
|
|
|
546
775
|
// src/ts/day/index.ts
|
|
547
776
|
import dayjs from "dayjs";
|
|
@@ -578,8 +807,188 @@ function toDayjs(t, fmt) {
|
|
|
578
807
|
return dayjs(t, fmt);
|
|
579
808
|
}
|
|
580
809
|
|
|
810
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/compat/_internal/isDeepKey.mjs
|
|
811
|
+
function isDeepKey(key) {
|
|
812
|
+
switch (typeof key) {
|
|
813
|
+
case "number":
|
|
814
|
+
case "symbol": {
|
|
815
|
+
return false;
|
|
816
|
+
}
|
|
817
|
+
case "string": {
|
|
818
|
+
return key.includes(".") || key.includes("[") || key.includes("]");
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/compat/_internal/toKey.mjs
|
|
824
|
+
function toKey(value) {
|
|
825
|
+
var _a;
|
|
826
|
+
if (typeof value === "string" || typeof value === "symbol") {
|
|
827
|
+
return value;
|
|
828
|
+
}
|
|
829
|
+
if (Object.is((_a = value == null ? void 0 : value.valueOf) == null ? void 0 : _a.call(value), -0)) {
|
|
830
|
+
return "-0";
|
|
831
|
+
}
|
|
832
|
+
return String(value);
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/compat/util/toString.mjs
|
|
836
|
+
function toString(value) {
|
|
837
|
+
if (value == null) {
|
|
838
|
+
return "";
|
|
839
|
+
}
|
|
840
|
+
if (typeof value === "string") {
|
|
841
|
+
return value;
|
|
842
|
+
}
|
|
843
|
+
if (Array.isArray(value)) {
|
|
844
|
+
return value.map(toString).join(",");
|
|
845
|
+
}
|
|
846
|
+
const result = String(value);
|
|
847
|
+
if (result === "0" && Object.is(Number(value), -0)) {
|
|
848
|
+
return "-0";
|
|
849
|
+
}
|
|
850
|
+
return result;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/compat/util/toPath.mjs
|
|
854
|
+
function toPath(deepKey) {
|
|
855
|
+
if (Array.isArray(deepKey)) {
|
|
856
|
+
return deepKey.map(toKey);
|
|
857
|
+
}
|
|
858
|
+
if (typeof deepKey === "symbol") {
|
|
859
|
+
return [deepKey];
|
|
860
|
+
}
|
|
861
|
+
deepKey = toString(deepKey);
|
|
862
|
+
const result = [];
|
|
863
|
+
const length = deepKey.length;
|
|
864
|
+
if (length === 0) {
|
|
865
|
+
return result;
|
|
866
|
+
}
|
|
867
|
+
let index = 0;
|
|
868
|
+
let key = "";
|
|
869
|
+
let quoteChar = "";
|
|
870
|
+
let bracket = false;
|
|
871
|
+
if (deepKey.charCodeAt(0) === 46) {
|
|
872
|
+
result.push("");
|
|
873
|
+
index++;
|
|
874
|
+
}
|
|
875
|
+
while (index < length) {
|
|
876
|
+
const char = deepKey[index];
|
|
877
|
+
if (quoteChar) {
|
|
878
|
+
if (char === "\\" && index + 1 < length) {
|
|
879
|
+
index++;
|
|
880
|
+
key += deepKey[index];
|
|
881
|
+
} else if (char === quoteChar) {
|
|
882
|
+
quoteChar = "";
|
|
883
|
+
} else {
|
|
884
|
+
key += char;
|
|
885
|
+
}
|
|
886
|
+
} else if (bracket) {
|
|
887
|
+
if (char === '"' || char === "'") {
|
|
888
|
+
quoteChar = char;
|
|
889
|
+
} else if (char === "]") {
|
|
890
|
+
bracket = false;
|
|
891
|
+
result.push(key);
|
|
892
|
+
key = "";
|
|
893
|
+
} else {
|
|
894
|
+
key += char;
|
|
895
|
+
}
|
|
896
|
+
} else {
|
|
897
|
+
if (char === "[") {
|
|
898
|
+
bracket = true;
|
|
899
|
+
if (key) {
|
|
900
|
+
result.push(key);
|
|
901
|
+
key = "";
|
|
902
|
+
}
|
|
903
|
+
} else if (char === ".") {
|
|
904
|
+
if (key) {
|
|
905
|
+
result.push(key);
|
|
906
|
+
key = "";
|
|
907
|
+
}
|
|
908
|
+
} else {
|
|
909
|
+
key += char;
|
|
910
|
+
}
|
|
911
|
+
}
|
|
912
|
+
index++;
|
|
913
|
+
}
|
|
914
|
+
if (key) {
|
|
915
|
+
result.push(key);
|
|
916
|
+
}
|
|
917
|
+
return result;
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
// node_modules/.pnpm/es-toolkit@1.44.0/node_modules/es-toolkit/dist/compat/object/get.mjs
|
|
921
|
+
function get(object, path, defaultValue) {
|
|
922
|
+
if (object == null) {
|
|
923
|
+
return defaultValue;
|
|
924
|
+
}
|
|
925
|
+
switch (typeof path) {
|
|
926
|
+
case "string": {
|
|
927
|
+
if (isUnsafeProperty(path)) {
|
|
928
|
+
return defaultValue;
|
|
929
|
+
}
|
|
930
|
+
const result = object[path];
|
|
931
|
+
if (result === void 0) {
|
|
932
|
+
if (isDeepKey(path)) {
|
|
933
|
+
return get(object, toPath(path), defaultValue);
|
|
934
|
+
} else {
|
|
935
|
+
return defaultValue;
|
|
936
|
+
}
|
|
937
|
+
}
|
|
938
|
+
return result;
|
|
939
|
+
}
|
|
940
|
+
case "number":
|
|
941
|
+
case "symbol": {
|
|
942
|
+
if (typeof path === "number") {
|
|
943
|
+
path = toKey(path);
|
|
944
|
+
}
|
|
945
|
+
const result = object[path];
|
|
946
|
+
if (result === void 0) {
|
|
947
|
+
return defaultValue;
|
|
948
|
+
}
|
|
949
|
+
return result;
|
|
950
|
+
}
|
|
951
|
+
default: {
|
|
952
|
+
if (Array.isArray(path)) {
|
|
953
|
+
return getWithPath(object, path, defaultValue);
|
|
954
|
+
}
|
|
955
|
+
if (Object.is(path == null ? void 0 : path.valueOf(), -0)) {
|
|
956
|
+
path = "-0";
|
|
957
|
+
} else {
|
|
958
|
+
path = String(path);
|
|
959
|
+
}
|
|
960
|
+
if (isUnsafeProperty(path)) {
|
|
961
|
+
return defaultValue;
|
|
962
|
+
}
|
|
963
|
+
const result = object[path];
|
|
964
|
+
if (result === void 0) {
|
|
965
|
+
return defaultValue;
|
|
966
|
+
}
|
|
967
|
+
return result;
|
|
968
|
+
}
|
|
969
|
+
}
|
|
970
|
+
}
|
|
971
|
+
function getWithPath(object, path, defaultValue) {
|
|
972
|
+
if (path.length === 0) {
|
|
973
|
+
return defaultValue;
|
|
974
|
+
}
|
|
975
|
+
let current = object;
|
|
976
|
+
for (let index = 0; index < path.length; index++) {
|
|
977
|
+
if (current == null) {
|
|
978
|
+
return defaultValue;
|
|
979
|
+
}
|
|
980
|
+
if (isUnsafeProperty(path[index])) {
|
|
981
|
+
return defaultValue;
|
|
982
|
+
}
|
|
983
|
+
current = current[path[index]];
|
|
984
|
+
}
|
|
985
|
+
if (current === void 0) {
|
|
986
|
+
return defaultValue;
|
|
987
|
+
}
|
|
988
|
+
return current;
|
|
989
|
+
}
|
|
990
|
+
|
|
581
991
|
// src/ts/object/index.ts
|
|
582
|
-
import { get, set } from "es-toolkit/compat";
|
|
583
992
|
var getObjectValue = get;
|
|
584
993
|
|
|
585
994
|
// src/ts/url/param/index.ts
|
|
@@ -874,7 +1283,6 @@ function toFormData(data) {
|
|
|
874
1283
|
}
|
|
875
1284
|
|
|
876
1285
|
// src/web/async/index.ts
|
|
877
|
-
import { cloneDeep as cloneDeep2 } from "es-toolkit";
|
|
878
1286
|
function enhanceWebApi(webApi, apiName) {
|
|
879
1287
|
return (option, config) => {
|
|
880
1288
|
const finalConfig = config || {};
|
|
@@ -905,9 +1313,9 @@ function enhanceWebApi(webApi, apiName) {
|
|
|
905
1313
|
const logData = __spreadValues({ name: fname, status: "success", option }, logExtra);
|
|
906
1314
|
if (resMap) {
|
|
907
1315
|
logData.res = res;
|
|
908
|
-
logData.resMap =
|
|
1316
|
+
logData.resMap = cloneDeep(finalRes);
|
|
909
1317
|
} else {
|
|
910
|
-
logData.res =
|
|
1318
|
+
logData.res = cloneDeep(res);
|
|
911
1319
|
}
|
|
912
1320
|
log == null ? void 0 : log("info", logData);
|
|
913
1321
|
}
|