mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
15 lines
458 B
TypeScript
15 lines
458 B
TypeScript
Deno.bench("noop", () => {});
|
|
Deno.bench("noop2", { baseline: true }, () => {});
|
|
|
|
Deno.bench("noop3", { group: "url" }, () => {});
|
|
|
|
Deno.bench("parse url 2x", { group: "url", baseline: true }, () => {
|
|
new URL("https://deno.land/std/http/server.ts");
|
|
new URL("https://deno.land/std/http/server.ts");
|
|
});
|
|
|
|
Deno.bench("parse url 200x", { group: "url" }, () => {
|
|
for (let i = 0; i < 200; i++) {
|
|
new URL("https://deno.land/std/http/server.ts");
|
|
}
|
|
});
|