aboutsummaryrefslogtreecommitdiff
path: root/bench/snippets/noop.js
diff options
context:
space:
mode:
Diffstat (limited to 'bench/snippets/noop.js')
-rw-r--r--bench/snippets/noop.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/bench/snippets/noop.js b/bench/snippets/noop.js
deleted file mode 100644
index 789e6abbb..000000000
--- a/bench/snippets/noop.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import { bench, run } from "mitata";
-
-var noop = globalThis[Symbol.for("Bun.lazy")]("noop");
-
-bench("function", function () {
- noop.function();
-});
-
-bench("setter", function () {
- noop.getterSetter = 1;
-});
-
-bench("getter", function () {
- noop.getterSetter;
-});
-
-run();