aboutsummaryrefslogtreecommitdiff
path: root/benchmark/benchmark.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--benchmark/benchmark.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/benchmark.ts b/benchmark/benchmark.ts
index eecce31..b99aa06 100644
--- a/benchmark/benchmark.ts
+++ b/benchmark/benchmark.ts
@@ -102,7 +102,7 @@ export function createBenchmark(benchmarkName: string): Benchmark {
return profile;
} as Benchmark;
- benchmark.report = function(fn?: (report: string) => void) {
+ benchmark.report = function (fn?: (report: string) => void) {
const fastest = profiles.reduce((previous: Profile, current: Profile) => {
return previous.bestTime < current.bestTime ? previous : current;
});