Skip to content

Commit ae61652

Browse files
committed
chore: lint
1 parent 72a5c5c commit ae61652

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

test/bench.mjs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
21
import fs from "node:fs";
32
import sjson from "secure-json-parse";
43
import bourne from "@hapi/bourne";
5-
import { bench, run, group, baseline } from 'mitata'
4+
import { bench, run, group, baseline } from "mitata";
65
import { destr, safeDestr } from "../dist/index.mjs";
76

87
function addBench(name, val) {
@@ -22,7 +21,7 @@ function addBench(name, val) {
2221
bench("@hapi/bourne", () => {
2322
bourne.parse(val);
2423
});
25-
})
24+
});
2625
}
2726

2827
function addTryCatchBench(name, val) {
@@ -62,7 +61,7 @@ function addTryCatchBench(name, val) {
6261
return val;
6362
}
6463
});
65-
})
64+
});
6665
}
6766

6867
addBench("Non-string fallback", 3.141_592_653_59);
@@ -79,4 +78,4 @@ addTryCatchBench("broken object", pkg.slice(0, Math.max(0, pkg.length - 1)));
7978

8079
await run({
8180
percentiles: false,
82-
})
81+
});

0 commit comments

Comments
 (0)