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 b0462d5 commit 2c9eb86Copy full SHA for 2c9eb86
src/language/high_order.test.ts
@@ -1,3 +1,10 @@
1
-import {} from "./repeat.ts";
2
-import {} from "./greater_than.ts";
3
-import {} from "./noisy.ts";
+// deno-lint-ignore-file no-unused-vars
+
+import { repeat } from "./repeat.ts";
4
+import {
5
+ greaterThan,
6
+ greaterThanOrEqual,
7
+ greaterThanParameter,
8
+} from "./greater_than.ts";
9
+import { noisy } from "./noisy.ts";
10
+import { unless } from "./unless.ts";
src/language/repeat.ts
@@ -1,3 +1,5 @@
+// deno-lint-ignore-file no-explicit-any
export function repeat<T extends (...args: any) => any>(
times: number,
action: T,
0 commit comments