mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
30 lines
540 B
TypeScript
30 lines
540 B
TypeScript
Deno.bench("bench0", () => {
|
|
throw new Error();
|
|
});
|
|
Deno.bench("bench1", () => {
|
|
throw new Error();
|
|
});
|
|
Deno.bench("bench2", () => {
|
|
throw new Error();
|
|
});
|
|
Deno.bench("bench3", () => {
|
|
throw new Error();
|
|
});
|
|
Deno.bench("bench4", () => {
|
|
throw new Error();
|
|
});
|
|
Deno.bench("bench5", () => {
|
|
throw new Error();
|
|
});
|
|
Deno.bench("bench6", () => {
|
|
throw new Error();
|
|
});
|
|
Deno.bench("bench7", () => {
|
|
throw new Error();
|
|
});
|
|
Deno.bench("bench8", () => {
|
|
throw new Error();
|
|
});
|
|
Deno.bench("bench9", () => {
|
|
throw new Error();
|
|
});
|