forked from lodash/lodash
-
Notifications
You must be signed in to change notification settings - Fork 3
/
function.js
28 lines (28 loc) · 1.11 KB
/
function.js
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
module.exports = {
'after': require('./function/after'),
'ary': require('./function/ary'),
'backflow': require('./function/backflow'),
'before': require('./function/before'),
'bind': require('./function/bind'),
'bindAll': require('./function/bindAll'),
'bindKey': require('./function/bindKey'),
'compose': require('./function/compose'),
'curry': require('./function/curry'),
'curryRight': require('./function/curryRight'),
'debounce': require('./function/debounce'),
'defer': require('./function/defer'),
'delay': require('./function/delay'),
'flow': require('./function/flow'),
'flowRight': require('./function/flowRight'),
'memoize': require('./function/memoize'),
'modArgs': require('./function/modArgs'),
'negate': require('./function/negate'),
'once': require('./function/once'),
'partial': require('./function/partial'),
'partialRight': require('./function/partialRight'),
'rearg': require('./function/rearg'),
'restParam': require('./function/restParam'),
'spread': require('./function/spread'),
'throttle': require('./function/throttle'),
'wrap': require('./function/wrap')
};