diff options
Diffstat (limited to 'bench/log/bun.js')
-rw-r--r-- | bench/log/bun.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bench/log/bun.js b/bench/log/bun.js index 70ba6ccab..43728fd64 100644 --- a/bench/log/bun.js +++ b/bench/log/bun.js @@ -1,4 +1,5 @@ import { bench, run } from "mitata"; -bench("console.log", () => console.log("hello")); +bench("console.log('hello')", () => console.log("hello")); +bench("console.log({ hello: 'object' })", () => console.log({ hello: "object" })); await run(); |