aboutsummaryrefslogtreecommitdiff
path: root/bench/log/bun.js
blob: a2f5dd73e0f0bb269630b0733cb60baaf6162a3f (plain) (blame)
1
2
3
4
5
6
7
import { bench, run } from "mitata";

bench("console.log('hello')", () => console.log("hello"));
bench("console.log({ hello: 'object' })", () =>
  console.log({ hello: "object" }),
);
await run();