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