bench: fix benchmark (#22279)

Missed in https://github.com/denoland/deno/pull/22277
This commit is contained in:
Bartek Iwańczuk 2024-02-06 01:36:17 +01:00 committed by GitHub
parent 838f7c257f
commit 1fd4b46dd0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,9 +10,6 @@ function addJS(a, b) {
}
Deno.bench("add_js", () => addJS(1, 2));
// Void ops measure op-overhead
Deno.bench("op_void_sync", () => op_void_sync());
// A very lightweight op, that should be highly optimizable
Deno.bench("perf_now", { n: 5e5 }, () => {
performance.now();