Skip to content

Commit 5d01463

Browse files
yosuke-furukawabnoordhuis
authored andcommitted
benchmark: print score to five decimal places
PR-URL: #516 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 752585d commit 5d01463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/common.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Benchmark.prototype.end = function(operations) {
201201
Benchmark.prototype.report = function(value) {
202202
var heading = this.getHeading();
203203
if (!silent)
204-
console.log('%s: %s', heading, value.toFixed(0));
204+
console.log('%s: %s', heading, value.toFixed(5));
205205
process.exit(0);
206206
};
207207

0 commit comments

Comments
 (0)