rm unnecessary brackets

This commit is contained in:
lion 2025-10-15 10:12:52 +08:00
parent 4f8cdb05c9
commit a3eedc5438
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ const main = () => {
}
const diff = process.hrtime(st);
totalMicroSecs += (diff[0] * 1_000_1000 + (diff[1] / 1e6));
totalMicroSecs += (diff[0] * 1_000_1000 + diff[1] / 1e6);
}).on('error', (err) => {
console.log(err);
process.exit(1);