remove the unused code

This commit is contained in:
lion 2025-10-15 09:30:32 +08:00
parent 008bbbe4d7
commit 4f8cdb05c9
1 changed files with 0 additions and 6 deletions

View File

@ -82,12 +82,6 @@ const _split = (line) => {
return ps;
}
const getMillSecs = () => {
const t = process.hrtime();
return t[0] * 1_000 + t[1] / 1_000_000;
}
// console.log(`dbPath=${dbPath}, src=${src}, cachePolicy=${cachePolicy}`);
const main = () => {
if (dbPath.length < 1 || srcPath.length < 1) {
parser.print_help();