We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ff91e3 commit 6b7afbeCopy full SHA for 6b7afbe
src/language/greater_than.bench.ts
@@ -1 +1,9 @@
1
import { greaterThan } from "./greater_than.ts";
2
+
3
+Deno.bench("greaterThan", () => {
4
+ const greaterOne = greaterThan(1);
5
6
+ for (let i = 0; i < 100; i++) {
7
+ greaterOne(i);
8
+ }
9
+});
0 commit comments