-
Notifications
You must be signed in to change notification settings - Fork 7.1k
/
Copy pathfunction.js
27 lines (27 loc) · 1.21 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
define(['./function/after', './function/ary', './function/backflow', './function/before', './function/bind', './function/bindAll', './function/bindKey', './function/compose', './function/curry', './function/curryRight', './function/debounce', './function/defer', './function/delay', './function/flow', './function/flowRight', './function/memoize', './function/negate', './function/once', './function/partial', './function/partialRight', './function/rearg', './function/throttle', './function/wrap'], function(after, ary, backflow, before, bind, bindAll, bindKey, compose, curry, curryRight, debounce, defer, delay, flow, flowRight, memoize, negate, once, partial, partialRight, rearg, throttle, wrap) {
return {
'after': after,
'ary': ary,
'backflow': backflow,
'before': before,
'bind': bind,
'bindAll': bindAll,
'bindKey': bindKey,
'compose': compose,
'curry': curry,
'curryRight': curryRight,
'debounce': debounce,
'defer': defer,
'delay': delay,
'flow': flow,
'flowRight': flowRight,
'memoize': memoize,
'negate': negate,
'once': once,
'partial': partial,
'partialRight': partialRight,
'rearg': rearg,
'throttle': throttle,
'wrap': wrap
};
});