Files
bun.sh/bench/log/bun.js
Jarred Sumner 3c1ad4b568 prettier
2022-12-15 16:28:47 -08:00

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();