mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
28 lines
1005 B
JavaScript
28 lines
1005 B
JavaScript
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
|
|
};
|
|
});
|