Skip to content

Commit 2c9eb86

Browse files
committed
♻️ Update
1 parent b0462d5 commit 2c9eb86

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

src/language/high_order.test.ts

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1-
import {} from "./repeat.ts";
2-
import {} from "./greater_than.ts";
3-
import {} from "./noisy.ts";
1+
// deno-lint-ignore-file no-unused-vars
2+
3+
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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// deno-lint-ignore-file no-explicit-any
2+
13
export function repeat<T extends (...args: any) => any>(
24
times: number,
35
action: T,

0 commit comments

Comments
 (0)