diff options
Diffstat (limited to 'bench/log/bun.js')
-rw-r--r-- | bench/log/bun.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bench/log/bun.js b/bench/log/bun.js index 43728fd64..a2f5dd73e 100644 --- a/bench/log/bun.js +++ b/bench/log/bun.js @@ -1,5 +1,7 @@ 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(); |