blob: 24d72446335142a2d12a674ab5546a70b1865b0f (
plain) (
blame)
1
2
3
4
5
|
import { bench, run } from "../node_modules/mitata/src/cli.mjs";
bench("console.log", () => console.log("hello"));
bench("console.log({ hello: 'object' })", () => console.log({ hello: "object" }));
await run();
|