blob: 43728fd648fee87d26070904dc697d30dcac30e8 (
plain) (
blame)
1
2
3
4
5
|
import { bench, run } from "mitata";
bench("console.log('hello')", () => console.log("hello"));
bench("console.log({ hello: 'object' })", () => console.log({ hello: "object" }));
await run();
|