aboutsummaryrefslogtreecommitdiff
path: root/bench/log/bun.js
diff options
context:
space:
mode:
Diffstat (limited to 'bench/log/bun.js')
-rw-r--r--bench/log/bun.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/bench/log/bun.js b/bench/log/bun.js
index a2f5dd73e..43728fd64 100644
--- a/bench/log/bun.js
+++ b/bench/log/bun.js
@@ -1,7 +1,5 @@
import { bench, run } from "mitata";
bench("console.log('hello')", () => console.log("hello"));
-bench("console.log({ hello: 'object' })", () =>
- console.log({ hello: "object" }),
-);
+bench("console.log({ hello: 'object' })", () => console.log({ hello: "object" }));
await run();