1 | import after from './after.js';
|
---|
2 | import ary from './ary.js';
|
---|
3 | import before from './before.js';
|
---|
4 | import bind from './bind.js';
|
---|
5 | import bindKey from './bindKey.js';
|
---|
6 | import curry from './curry.js';
|
---|
7 | import curryRight from './curryRight.js';
|
---|
8 | import debounce from './debounce.js';
|
---|
9 | import defer from './defer.js';
|
---|
10 | import delay from './delay.js';
|
---|
11 | import flip from './flip.js';
|
---|
12 | import memoize from './memoize.js';
|
---|
13 | import negate from './negate.js';
|
---|
14 | import once from './once.js';
|
---|
15 | import overArgs from './overArgs.js';
|
---|
16 | import partial from './partial.js';
|
---|
17 | import partialRight from './partialRight.js';
|
---|
18 | import rearg from './rearg.js';
|
---|
19 | import rest from './rest.js';
|
---|
20 | import spread from './spread.js';
|
---|
21 | import throttle from './throttle.js';
|
---|
22 | import unary from './unary.js';
|
---|
23 | import wrap from './wrap.js';
|
---|
24 |
|
---|
25 | export 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 | };
|
---|