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