-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.ts
37 lines (35 loc) · 1015 Bytes
/
mod.ts
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
import * as arrayExtend from "./array.ts";
import * as booleanExtend from "./boolean.ts";
import * as dateExtend from "./date.ts";
import * as errorExtend from "./error.ts";
import * as functionExtend from "./function.ts";
import * as iteratorExtend from "./iterator.ts";
import * as mapExtend from "./map.ts";
import * as numberExtend from "./number.ts";
import * as objectExtend from "./object.ts";
import * as promiseExtend from "./promise.ts";
import * as regExpExtend from "./reg-exp.ts";
import * as setExtend from "./set.ts";
import * as stringExtend from "./string.ts";
import * as symbolExtend from "./symbol.ts";
import * as weakMapExtend from "./weak-map.ts";
import * as weakSetExtend from "./weak-set.ts";
export * from "./extend.ts";
export {
arrayExtend,
booleanExtend,
dateExtend,
errorExtend,
functionExtend,
iteratorExtend,
mapExtend,
numberExtend,
objectExtend,
promiseExtend,
regExpExtend,
setExtend,
stringExtend,
symbolExtend,
weakMapExtend,
weakSetExtend
};