mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
import { bench, run } from "mitata";
|
|
|
|
bench("console.log('hello')", () => console.log("hello"));
|
|
bench("console.log({ hello: 'object' })", () =>
|
|
console.log({ hello: "object" }),
|
|
);
|
|
await run();
|