rm unnecessary brackets
This commit is contained in:
parent
4f8cdb05c9
commit
a3eedc5438
|
|
@ -117,7 +117,7 @@ const main = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const diff = process.hrtime(st);
|
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) => {
|
}).on('error', (err) => {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue