-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.ts
More file actions
36 lines (35 loc) · 981 Bytes
/
Copy pathmod.ts
File metadata and controls
36 lines (35 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { check_is_array, check_is_not_array } from "./src/checkArray/main.ts";
import {
check_is_empty_array,
check_is_not_empty_array,
} from "./src/checkEmptyArray/main.ts";
import {
check_is_first_iteration,
check_is_not_first_iteration,
} from "./src/checkFirstIteration/main.ts";
import {
check_is_last_iteration,
check_is_not_last_iteration,
} from "./src/checkLastIteration/main.ts";
import {
check_is_not_specific_iteration,
check_is_specific_iteration,
} from "./src/checkSpecificIteration/main.ts";
import {
check_array_does_not_have_value,
check_array_has_value,
} from "./src/checkHasValue/main.ts";
export {
check_array_does_not_have_value,
check_array_has_value,
check_is_array,
check_is_empty_array,
check_is_first_iteration,
check_is_last_iteration,
check_is_not_array,
check_is_not_empty_array,
check_is_not_first_iteration,
check_is_not_last_iteration,
check_is_not_specific_iteration,
check_is_specific_iteration,
};