function.default.js 996 B

12345678910111213141516171819202122232425262728293031
  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. export default {
  25. after, ary, before, bind, bindKey,
  26. curry, curryRight, debounce, defer, delay,
  27. flip, memoize, negate, once, overArgs,
  28. partial, partialRight, rearg, rest, spread,
  29. throttle, unary, wrap
  30. };