-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.ts
78 lines (77 loc) · 2.32 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// only for vite, tsup
// remember, this is not barrel file.
const moduleMap = {
assign: './src/assign.ts',
before: './src/before.ts',
chunk: './src/chunk.ts',
clamp: './src/clamp.ts',
clone: './src/clone.ts',
cloneDeep: './src/cloneDeep.ts',
debounce: './src/debounce.ts',
delay: './src/delay.ts',
difference: './src/difference.ts',
entries: './src/entries.ts',
eq: './src/eq.ts',
every: './src/every.ts',
filter: './src/filter.ts',
findIndex: './src/findIndex.ts',
findLastIndex: './src/findLastIndex.ts',
first: './src/first.ts',
flatten: './src/flatten.ts',
flow: './src/flow.ts',
groupBy: './src/groupBy.ts',
gt: './src/gt.ts',
has: './src/has.ts',
identity: './src/identity.ts',
includes: './src/includes.ts',
isArray: './src/isArray.ts',
isEmpty: './src/isEmpty.ts',
isEqual: './src/isEqual.ts',
isError: './src/isError.ts',
isFunction: './src/isFunction.ts',
isMap: './src/isMap.ts',
isNil: './src/isNil.ts',
isNull: './src/isNull.ts',
isNumber: './src/isNumber.ts',
isObject: './src/isObject.ts',
isPlainObject: './src/isPlainObject.ts',
isSet: './src/isSet.ts',
isString: './src/isString.ts',
isSymbol: './src/isSymbol.ts',
isUndefined: './src/isUndefined.ts',
join: './src/join.ts',
keys: './src/keys.ts',
last: './src/last.ts',
lt: './src/lt.ts',
map: './src/map.ts',
mapValues: './src/mapValues.ts',
memoize: './src/memoize.ts',
merge: './src/merge.ts',
omit: './src/omit.ts',
once: './src/once.ts',
pick: './src/pick.ts',
pickBy: './src/pickBy.ts',
range: './src/range.ts',
repeat: './src/repeat.ts',
reverse: './src/reverse.ts',
shuffle: './src/shuffle.ts',
size: './src/size.ts',
sleep: './src/sleep.ts',
some: './src/some.ts',
sum: './src/sum.ts',
sumBy: './src/sumBy.ts',
throttle: './src/throttle.ts',
times: './src/times.ts',
toNumber: './src/toNumber.ts',
toPairs: './src/toPairs.ts',
toString: './src/toString.ts',
transform: './src/transform.ts',
trim: './src/trim.ts',
union: './src/union.ts',
uniq: './src/uniq.ts',
uniqBy: './src/uniqBy.ts',
uniqWith: './src/uniqWith.ts',
values: './src/values.ts',
zip: './src/zip.ts',
} as const
export default moduleMap