-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
54 lines (52 loc) · 939 Bytes
/
index.js
File metadata and controls
54 lines (52 loc) · 939 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.js";
import async from "./async/index.js";
import date from "./date/index.js";
import debug from "./debug/index.js";
import encoding from "./encoding/index.js";
import file from "./file/index.js";
import _function from "./function/index.js";
import is from "./is/index.js";
import math from "./math/index.js";
import object from "./object/index.js";
import query from "./query/index.js";
import range from "./range/index.js";
import regex from "./regex/index.js";
import string from "./string/index.js";
import vector2 from "./vector2/index.js";
import web from "./web/index.js";
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
};