Files
bun.sh/bench/async/deno.js
2024-09-03 21:32:52 -07:00

8 lines
176 B
JavaScript

import { bench, run } from "../node_modules/mitata/src/cli.mjs";
bench("sync", () => {});
bench("async", async () => {});
bench("await 1", async () => await 1);
await run();