-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
54 lines (52 loc) · 891 Bytes
/
index.ts
File metadata and controls
54 lines (52 loc) · 891 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import array from "./array/index";
import async from "./async/index";
import date from "./date/index";
import debug from "./debug/index";
import encoding from "./encoding/index";
import file from "./file/index";
import _function from "./function/index";
import is from "./is/index";
import math from "./math/index";
import object from "./object/index";
import query from "./query/index";
import range from "./range/index";
import regex from "./regex/index";
import string from "./string/index";
import vector2 from "./vector2/index";
import web from "./web/index";
export {
array,
async,
date,
debug,
encoding,
file,
_function,
is,
math,
object,
query,
range,
regex,
string,
vector2,
web
};
export default {
array,
async,
date,
debug,
encoding,
file,
_function,
is,
math,
object,
query,
range,
regex,
string,
vector2,
web
};