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