UNPKG

996 BJavaScriptView Raw
1import after from './after.js';
2import ary from './ary.js';
3import before from './before.js';
4import bind from './bind.js';
5import bindKey from './bindKey.js';
6import curry from './curry.js';
7import curryRight from './curryRight.js';
8import debounce from './debounce.js';
9import defer from './defer.js';
10import delay from './delay.js';
11import flip from './flip.js';
12import memoize from './memoize.js';
13import negate from './negate.js';
14import once from './once.js';
15import overArgs from './overArgs.js';
16import partial from './partial.js';
17import partialRight from './partialRight.js';
18import rearg from './rearg.js';
19import rest from './rest.js';
20import spread from './spread.js';
21import throttle from './throttle.js';
22import unary from './unary.js';
23import wrap from './wrap.js';
24
25export default {
26 after, ary, before, bind, bindKey,
27 curry, curryRight, debounce, defer, delay,
28 flip, memoize, negate, once, overArgs,
29 partial, partialRight, rearg, rest, spread,
30 throttle, unary, wrap
31};