aboutsummaryrefslogtreecommitdiff
path: root/benchmark/benchmark.ts
diff options
context:
space:
mode:
authorUri Shaked2021-08-15 19:49:16 +0300
committerUri Shaked2021-08-15 19:49:16 +0300
commit3245a950539f49186fefedf09477f014659fadd7 (patch)
tree1f0b836e06d13cb7cd6e7698c132c5a6283075c7 /benchmark/benchmark.ts
parent0.16.6 (diff)
downloadavr8js-3245a950539f49186fefedf09477f014659fadd7.tar.gz
avr8js-3245a950539f49186fefedf09477f014659fadd7.tar.bz2
avr8js-3245a950539f49186fefedf09477f014659fadd7.zip
chore(deps): prettier 2.3.2
also reformat all the code with the new version
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;
});