mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
7 lines
263 B
TypeScript
7 lines
263 B
TypeScript
|
Deno.bench("bench0", () => {});
|
||
|
Deno.bench(function bench1() {});
|
||
|
Deno.bench({ name: "bench2", fn: () => {} });
|
||
|
Deno.bench("bench3", { permissions: "none" }, () => {});
|
||
|
Deno.bench({ name: "bench4" }, () => {});
|
||
|
Deno.bench({ ignore: true }, function bench5() {});
|