agmd 0.3.11 → 0.3.12
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/bin/bin.js +65 -65
- package/bin/bin.js.map +4 -4
- package/lib/commands/change-path.d.ts +2 -2
- package/lib/index.cjs.js +77 -95
- package/lib/index.cjs.js.map +4 -4
- package/lib/index.esm.js +77 -95
- package/lib/index.esm.js.map +4 -4
- package/package.json +1 -1
|
@@ -2,8 +2,8 @@ import { ItemType } from './get-file';
|
|
|
2
2
|
export declare function changePath(nodes: ItemType[], nochangePath?: Boolean): Promise<void>;
|
|
3
3
|
export declare function getRelatPath(absoluteImport: string, fullPath: string): string;
|
|
4
4
|
export declare function makeSuffix(filePath: string, fullPath: string): string;
|
|
5
|
-
export declare function getImportName(ele: string): string;
|
|
6
|
-
export declare function changeImport(ele: string, fullPath: string, nochangePath?: Boolean): {
|
|
5
|
+
export declare function getImportName(ele: string, dependencies: string[]): string;
|
|
6
|
+
export declare function changeImport(ele: string, fullPath: string, dependencies: string[], nochangePath?: Boolean): {
|
|
7
7
|
impName: string;
|
|
8
8
|
filePath: string;
|
|
9
9
|
absoluteImport: string;
|
package/lib/index.cjs.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* agmd v0.3.
|
|
2
|
+
* agmd v0.3.11
|
|
3
3
|
* author:kakajun <253495832@qq.com>
|
|
4
|
-
*
|
|
4
|
+
* Tue Nov 28 2023 22:44:13 GMT+0800 (中国标准时间)
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
7
7
|
var __create = Object.create;
|
|
@@ -35,9 +35,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
35
35
|
));
|
|
36
36
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
37
37
|
|
|
38
|
-
// node_modules/.
|
|
38
|
+
// node_modules/.pnpm/ms@2.1.2/node_modules/ms/index.js
|
|
39
39
|
var require_ms = __commonJS({
|
|
40
|
-
"node_modules/.
|
|
40
|
+
"node_modules/.pnpm/ms@2.1.2/node_modules/ms/index.js"(exports, module2) {
|
|
41
41
|
var s = 1e3;
|
|
42
42
|
var m = s * 60;
|
|
43
43
|
var h = m * 60;
|
|
@@ -151,9 +151,9 @@ var require_ms = __commonJS({
|
|
|
151
151
|
}
|
|
152
152
|
});
|
|
153
153
|
|
|
154
|
-
// node_modules/.
|
|
154
|
+
// node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/common.js
|
|
155
155
|
var require_common = __commonJS({
|
|
156
|
-
"node_modules/.
|
|
156
|
+
"node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/common.js"(exports, module2) {
|
|
157
157
|
function setup(env2) {
|
|
158
158
|
createDebug.debug = createDebug;
|
|
159
159
|
createDebug.default = createDebug;
|
|
@@ -314,9 +314,9 @@ var require_common = __commonJS({
|
|
|
314
314
|
}
|
|
315
315
|
});
|
|
316
316
|
|
|
317
|
-
// node_modules/.
|
|
317
|
+
// node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/browser.js
|
|
318
318
|
var require_browser = __commonJS({
|
|
319
|
-
"node_modules/.
|
|
319
|
+
"node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/browser.js"(exports, module2) {
|
|
320
320
|
exports.formatArgs = formatArgs;
|
|
321
321
|
exports.save = save;
|
|
322
322
|
exports.load = load;
|
|
@@ -483,43 +483,35 @@ var require_browser = __commonJS({
|
|
|
483
483
|
}
|
|
484
484
|
});
|
|
485
485
|
|
|
486
|
-
// node_modules/.
|
|
486
|
+
// node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js
|
|
487
487
|
var require_has_flag = __commonJS({
|
|
488
|
-
"node_modules/.
|
|
488
|
+
"node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js"(exports, module2) {
|
|
489
489
|
"use strict";
|
|
490
|
-
module2.exports = (flag, argv
|
|
490
|
+
module2.exports = (flag, argv) => {
|
|
491
|
+
argv = argv || process.argv;
|
|
491
492
|
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
492
|
-
const
|
|
493
|
-
const
|
|
494
|
-
return
|
|
493
|
+
const pos = argv.indexOf(prefix + flag);
|
|
494
|
+
const terminatorPos = argv.indexOf("--");
|
|
495
|
+
return pos !== -1 && (terminatorPos === -1 ? true : pos < terminatorPos);
|
|
495
496
|
};
|
|
496
497
|
}
|
|
497
498
|
});
|
|
498
499
|
|
|
499
|
-
// node_modules/.
|
|
500
|
+
// node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js
|
|
500
501
|
var require_supports_color = __commonJS({
|
|
501
|
-
"node_modules/.
|
|
502
|
+
"node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js"(exports, module2) {
|
|
502
503
|
"use strict";
|
|
503
504
|
var os = require("os");
|
|
504
|
-
var tty = require("tty");
|
|
505
505
|
var hasFlag = require_has_flag();
|
|
506
|
-
var
|
|
507
|
-
var
|
|
508
|
-
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false")
|
|
509
|
-
|
|
506
|
+
var env2 = process.env;
|
|
507
|
+
var forceColor;
|
|
508
|
+
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false")) {
|
|
509
|
+
forceColor = false;
|
|
510
510
|
} else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
|
|
511
|
-
|
|
511
|
+
forceColor = true;
|
|
512
512
|
}
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
if (env2.FORCE_COLOR === "true") {
|
|
516
|
-
return 1;
|
|
517
|
-
}
|
|
518
|
-
if (env2.FORCE_COLOR === "false") {
|
|
519
|
-
return 0;
|
|
520
|
-
}
|
|
521
|
-
return env2.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env2.FORCE_COLOR, 10), 3);
|
|
522
|
-
}
|
|
513
|
+
if ("FORCE_COLOR" in env2) {
|
|
514
|
+
forceColor = env2.FORCE_COLOR.length === 0 || parseInt(env2.FORCE_COLOR, 10) !== 0;
|
|
523
515
|
}
|
|
524
516
|
function translateLevel(level) {
|
|
525
517
|
if (level === 0) {
|
|
@@ -532,39 +524,29 @@ var require_supports_color = __commonJS({
|
|
|
532
524
|
has16m: level >= 3
|
|
533
525
|
};
|
|
534
526
|
}
|
|
535
|
-
function supportsColor(
|
|
536
|
-
|
|
537
|
-
if (noFlagForceColor !== void 0) {
|
|
538
|
-
flagForceColor = noFlagForceColor;
|
|
539
|
-
}
|
|
540
|
-
const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
|
|
541
|
-
if (forceColor === 0) {
|
|
527
|
+
function supportsColor(stream) {
|
|
528
|
+
if (forceColor === false) {
|
|
542
529
|
return 0;
|
|
543
530
|
}
|
|
544
|
-
if (
|
|
545
|
-
|
|
546
|
-
return 3;
|
|
547
|
-
}
|
|
548
|
-
if (hasFlag("color=256")) {
|
|
549
|
-
return 2;
|
|
550
|
-
}
|
|
531
|
+
if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
|
|
532
|
+
return 3;
|
|
551
533
|
}
|
|
552
|
-
if (
|
|
553
|
-
return
|
|
534
|
+
if (hasFlag("color=256")) {
|
|
535
|
+
return 2;
|
|
554
536
|
}
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
return min;
|
|
537
|
+
if (stream && !stream.isTTY && forceColor !== true) {
|
|
538
|
+
return 0;
|
|
558
539
|
}
|
|
540
|
+
const min = forceColor ? 1 : 0;
|
|
559
541
|
if (process.platform === "win32") {
|
|
560
542
|
const osRelease = os.release().split(".");
|
|
561
|
-
if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
543
|
+
if (Number(process.versions.node.split(".")[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
562
544
|
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
563
545
|
}
|
|
564
546
|
return 1;
|
|
565
547
|
}
|
|
566
548
|
if ("CI" in env2) {
|
|
567
|
-
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI"
|
|
549
|
+
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI"].some((sign) => sign in env2) || env2.CI_NAME === "codeship") {
|
|
568
550
|
return 1;
|
|
569
551
|
}
|
|
570
552
|
return min;
|
|
@@ -576,7 +558,7 @@ var require_supports_color = __commonJS({
|
|
|
576
558
|
return 3;
|
|
577
559
|
}
|
|
578
560
|
if ("TERM_PROGRAM" in env2) {
|
|
579
|
-
const version =
|
|
561
|
+
const version = parseInt((env2.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
|
580
562
|
switch (env2.TERM_PROGRAM) {
|
|
581
563
|
case "iTerm.app":
|
|
582
564
|
return version >= 3 ? 3 : 2;
|
|
@@ -593,26 +575,26 @@ var require_supports_color = __commonJS({
|
|
|
593
575
|
if ("COLORTERM" in env2) {
|
|
594
576
|
return 1;
|
|
595
577
|
}
|
|
578
|
+
if (env2.TERM === "dumb") {
|
|
579
|
+
return min;
|
|
580
|
+
}
|
|
596
581
|
return min;
|
|
597
582
|
}
|
|
598
|
-
function getSupportLevel(stream
|
|
599
|
-
const level = supportsColor(stream
|
|
600
|
-
streamIsTTY: stream && stream.isTTY,
|
|
601
|
-
...options2
|
|
602
|
-
});
|
|
583
|
+
function getSupportLevel(stream) {
|
|
584
|
+
const level = supportsColor(stream);
|
|
603
585
|
return translateLevel(level);
|
|
604
586
|
}
|
|
605
587
|
module2.exports = {
|
|
606
588
|
supportsColor: getSupportLevel,
|
|
607
|
-
stdout: getSupportLevel(
|
|
608
|
-
stderr: getSupportLevel(
|
|
589
|
+
stdout: getSupportLevel(process.stdout),
|
|
590
|
+
stderr: getSupportLevel(process.stderr)
|
|
609
591
|
};
|
|
610
592
|
}
|
|
611
593
|
});
|
|
612
594
|
|
|
613
|
-
// node_modules/.
|
|
595
|
+
// node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/node.js
|
|
614
596
|
var require_node = __commonJS({
|
|
615
|
-
"node_modules/.
|
|
597
|
+
"node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/node.js"(exports, module2) {
|
|
616
598
|
var tty = require("tty");
|
|
617
599
|
var util = require("util");
|
|
618
600
|
exports.init = init;
|
|
@@ -784,9 +766,9 @@ var require_node = __commonJS({
|
|
|
784
766
|
}
|
|
785
767
|
});
|
|
786
768
|
|
|
787
|
-
// node_modules/.
|
|
769
|
+
// node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/index.js
|
|
788
770
|
var require_src = __commonJS({
|
|
789
|
-
"node_modules/.
|
|
771
|
+
"node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/index.js"(exports, module2) {
|
|
790
772
|
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
|
791
773
|
module2.exports = require_browser();
|
|
792
774
|
} else {
|
|
@@ -795,18 +777,18 @@ var require_src = __commonJS({
|
|
|
795
777
|
}
|
|
796
778
|
});
|
|
797
779
|
|
|
798
|
-
// node_modules/.
|
|
780
|
+
// node_modules/.pnpm/node-environment@0.5.1/node_modules/node-environment/lib/compare-aliases.js
|
|
799
781
|
var require_compare_aliases = __commonJS({
|
|
800
|
-
"node_modules/.
|
|
782
|
+
"node_modules/.pnpm/node-environment@0.5.1/node_modules/node-environment/lib/compare-aliases.js"(exports, module2) {
|
|
801
783
|
module2.exports = function compareAliases(env2, ...aliases) {
|
|
802
784
|
return aliases.some((alias) => alias.toLowerCase() === env2.toLowerCase());
|
|
803
785
|
};
|
|
804
786
|
}
|
|
805
787
|
});
|
|
806
788
|
|
|
807
|
-
// node_modules/.
|
|
789
|
+
// node_modules/.pnpm/node-environment@0.5.1/node_modules/node-environment/lib/modes.enum.js
|
|
808
790
|
var require_modes_enum = __commonJS({
|
|
809
|
-
"node_modules/.
|
|
791
|
+
"node_modules/.pnpm/node-environment@0.5.1/node_modules/node-environment/lib/modes.enum.js"(exports, module2) {
|
|
810
792
|
var Development = {
|
|
811
793
|
dev: "dev",
|
|
812
794
|
development: "development"
|
|
@@ -822,9 +804,9 @@ var require_modes_enum = __commonJS({
|
|
|
822
804
|
}
|
|
823
805
|
});
|
|
824
806
|
|
|
825
|
-
// node_modules/.
|
|
807
|
+
// node_modules/.pnpm/node-environment@0.5.1/node_modules/node-environment/lib/inspector.js
|
|
826
808
|
var require_inspector = __commonJS({
|
|
827
|
-
"node_modules/.
|
|
809
|
+
"node_modules/.pnpm/node-environment@0.5.1/node_modules/node-environment/lib/inspector.js"(exports, module2) {
|
|
828
810
|
var compare = require_compare_aliases();
|
|
829
811
|
var modes = require_modes_enum();
|
|
830
812
|
function inspector(...envs) {
|
|
@@ -854,9 +836,9 @@ var require_inspector = __commonJS({
|
|
|
854
836
|
}
|
|
855
837
|
});
|
|
856
838
|
|
|
857
|
-
// node_modules/.
|
|
839
|
+
// node_modules/.pnpm/node-environment@0.5.1/node_modules/node-environment/lib/index.js
|
|
858
840
|
var require_lib = __commonJS({
|
|
859
|
-
"node_modules/.
|
|
841
|
+
"node_modules/.pnpm/node-environment@0.5.1/node_modules/node-environment/lib/index.js"(exports, module2) {
|
|
860
842
|
module2.exports = {
|
|
861
843
|
env: require_inspector()
|
|
862
844
|
};
|
|
@@ -880,7 +862,7 @@ var import_debug2 = __toESM(require_src());
|
|
|
880
862
|
var import_fs = __toESM(require("fs"));
|
|
881
863
|
var import_path = __toESM(require("path"));
|
|
882
864
|
|
|
883
|
-
// node_modules/.
|
|
865
|
+
// node_modules/.pnpm/kolorist@1.8.0/node_modules/kolorist/dist/esm/index.mjs
|
|
884
866
|
var enabled = true;
|
|
885
867
|
var globalVar = typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : {};
|
|
886
868
|
var supportLevel = 0;
|
|
@@ -992,7 +974,8 @@ var logger_default = logger;
|
|
|
992
974
|
// src/commands/change-path.ts
|
|
993
975
|
var import_debug = __toESM(require_src());
|
|
994
976
|
var debug = (0, import_debug.default)("change-path");
|
|
995
|
-
debug.enabled =
|
|
977
|
+
debug.enabled = true;
|
|
978
|
+
var rootPath = process.cwd().replace(/\\/g, "/");
|
|
996
979
|
function getRelatPath(absoluteImport, fullPath) {
|
|
997
980
|
let relatPath = import_path.default.relative(import_path.default.dirname(fullPath), absoluteImport);
|
|
998
981
|
relatPath = relatPath.replace(/\\/g, "/");
|
|
@@ -1014,7 +997,7 @@ function makeSuffix(filePath, fullPath) {
|
|
|
1014
997
|
debug("lastName", lastName);
|
|
1015
998
|
if (!lastName) {
|
|
1016
999
|
debug("!!!!!!!!!!!\u7F3A\u540E\u7F00\u6587\u4EF6: ", absoluteImport);
|
|
1017
|
-
const suffix = [".js", ".ts", ".vue", "/index.js", "/index.vue"];
|
|
1000
|
+
const suffix = [".js", ".ts", ".vue", ".tsx", "/index.js", "/index.vue"];
|
|
1018
1001
|
for (let j = 0; j < suffix.length; j++) {
|
|
1019
1002
|
const fixStr = suffix[j];
|
|
1020
1003
|
if (import_fs.default.existsSync(absoluteImport + fixStr)) {
|
|
@@ -1026,20 +1009,9 @@ function makeSuffix(filePath, fullPath) {
|
|
|
1026
1009
|
}
|
|
1027
1010
|
return absoluteImport.replace(/\\/g, "/");
|
|
1028
1011
|
}
|
|
1029
|
-
function getImportName(ele) {
|
|
1012
|
+
function getImportName(ele, dependencies) {
|
|
1030
1013
|
let str = "";
|
|
1031
|
-
const
|
|
1032
|
-
"xiwicloud",
|
|
1033
|
-
"bpmn-js",
|
|
1034
|
-
"element-ui",
|
|
1035
|
-
"lodash",
|
|
1036
|
-
"handsontable",
|
|
1037
|
-
"nprogress",
|
|
1038
|
-
"quill",
|
|
1039
|
-
"qrcodejs2",
|
|
1040
|
-
"echarts"
|
|
1041
|
-
];
|
|
1042
|
-
const flag = ignore.some((item) => ele.indexOf(item) > -1);
|
|
1014
|
+
const flag = dependencies.some((item) => ele.indexOf(item) > -1);
|
|
1043
1015
|
const reg = / from [\"|\'](.*)[\'|\"]/;
|
|
1044
1016
|
if (!flag && ele.indexOf("/") > -1 && ele.indexOf("//") !== 0) {
|
|
1045
1017
|
const impStr = ele.match(reg);
|
|
@@ -1048,13 +1020,13 @@ function getImportName(ele) {
|
|
|
1048
1020
|
}
|
|
1049
1021
|
return str;
|
|
1050
1022
|
}
|
|
1051
|
-
function changeImport(ele, fullPath, nochangePath) {
|
|
1023
|
+
function changeImport(ele, fullPath, dependencies, nochangePath) {
|
|
1052
1024
|
const obj = {
|
|
1053
1025
|
impName: "",
|
|
1054
1026
|
filePath: "",
|
|
1055
1027
|
absoluteImport: ""
|
|
1056
1028
|
};
|
|
1057
|
-
const impName = getImportName(ele);
|
|
1029
|
+
const impName = getImportName(ele, dependencies);
|
|
1058
1030
|
if (impName) {
|
|
1059
1031
|
obj.filePath = impName;
|
|
1060
1032
|
debug("!!!!!!!!!\u5339\u914Dimp: ", impName);
|
|
@@ -1072,6 +1044,7 @@ function changeImport(ele, fullPath, nochangePath) {
|
|
|
1072
1044
|
var import_node_environment = __toESM(require_lib());
|
|
1073
1045
|
var debug2 = (0, import_debug2.default)("get-file");
|
|
1074
1046
|
debug2.enabled = false;
|
|
1047
|
+
var rootPath2 = process.cwd().replace(/\\/g, "/");
|
|
1075
1048
|
var isDev = (0, import_node_environment.env)() === "development";
|
|
1076
1049
|
function getFile(fullPath) {
|
|
1077
1050
|
const str = import_fs2.default.readFileSync(fullPath, "utf-8");
|
|
@@ -1089,10 +1062,19 @@ function getFile(fullPath) {
|
|
|
1089
1062
|
};
|
|
1090
1063
|
}
|
|
1091
1064
|
function getImport(sarr, fullPath) {
|
|
1065
|
+
const dependencies = [];
|
|
1066
|
+
if (import_fs2.default.existsSync(rootPath2 + "/package.json")) {
|
|
1067
|
+
const pkg = require(rootPath2 + "/package.json");
|
|
1068
|
+
if (pkg.devDependencies) {
|
|
1069
|
+
dependencies.push(...Object.keys(pkg.devDependencies));
|
|
1070
|
+
} else if (pkg.dependencies) {
|
|
1071
|
+
dependencies.push(...Object.keys(pkg.dependencies));
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1092
1074
|
const imports = [];
|
|
1093
1075
|
sarr.forEach((ele) => {
|
|
1094
1076
|
if (ele.indexOf("from") > -1) {
|
|
1095
|
-
const { absoluteImport } = changeImport(ele, fullPath);
|
|
1077
|
+
const { absoluteImport } = changeImport(ele, fullPath, dependencies);
|
|
1096
1078
|
if (absoluteImport) {
|
|
1097
1079
|
imports.push(absoluteImport);
|
|
1098
1080
|
}
|
|
@@ -1121,7 +1103,7 @@ function getFileNodes(dir = process.cwd(), option, nodes = [], level = 0) {
|
|
|
1121
1103
|
"readme-file.js",
|
|
1122
1104
|
"readme-md.js"
|
|
1123
1105
|
];
|
|
1124
|
-
let include = isDev ? [".js", ".vue"] : [".js", ".vue", ".ts"];
|
|
1106
|
+
let include = isDev ? [".js", ".vue"] : [".js", ".vue", ".ts", ".tsx"];
|
|
1125
1107
|
if (option) {
|
|
1126
1108
|
ignore = option.ignore || ignore;
|
|
1127
1109
|
include = option.include || include;
|
|
@@ -1199,7 +1181,7 @@ function setMd(obj, last) {
|
|
|
1199
1181
|
|
|
1200
1182
|
// src/commands/wirte-md.ts
|
|
1201
1183
|
var import_debug3 = __toESM(require_src());
|
|
1202
|
-
var
|
|
1184
|
+
var rootPath3 = process.cwd().replace(/\\/g, "/");
|
|
1203
1185
|
var debug3 = (0, import_debug3.default)("wirte-md");
|
|
1204
1186
|
debug3.enabled = false;
|
|
1205
1187
|
function getCountMd(datas) {
|
|
@@ -1250,7 +1232,7 @@ function setCountMd(obj) {
|
|
|
1250
1232
|
}
|
|
1251
1233
|
function getMd(option) {
|
|
1252
1234
|
logger_default.success("\u{1F449} \u547D\u4EE4\u8FD0\u884C\u4F4D\u7F6E: " + process.cwd() + "\n");
|
|
1253
|
-
const nodes = getFileNodes(
|
|
1235
|
+
const nodes = getFileNodes(rootPath3, option);
|
|
1254
1236
|
const countMdObj = getCountMd(nodes);
|
|
1255
1237
|
const coutMd = setCountMd(countMdObj);
|
|
1256
1238
|
logger_default.success(coutMd);
|