-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
36 lines (34 loc) · 891 Bytes
/
index.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
import * as array from "./shared/array";
import * as assertion from "./shared/assertion";
import * as cls from "./shared/class";
import * as clone from "./shared/clone";
import * as constants from "./shared/constants";
import * as hash from "./shared/hash";
import * as math from "./shared/math";
import * as object from "./shared/object";
import * as selector from "./shared/selector";
import * as specific from "./shared/specific";
import * as str from "./shared/str";
import * as tree from "./shared/tree";
import * as url from "./shared/url";
import * as uuid from "./shared/uuid";
import * as yaml from "./shared/yaml";
export const sharedUtils = {
array,
cls,
clone,
constants,
hash,
math,
object,
selector,
specific,
str,
tree,
url,
uuid,
assertion,
yaml,
};
export const Utils = sharedUtils;
export default { ...Utils };