Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

function.js 780B

12345678910111213141516171819202122232425
  1. module.exports = {
  2. 'after': require('./after'),
  3. 'ary': require('./ary'),
  4. 'before': require('./before'),
  5. 'bind': require('./bind'),
  6. 'bindKey': require('./bindKey'),
  7. 'curry': require('./curry'),
  8. 'curryRight': require('./curryRight'),
  9. 'debounce': require('./debounce'),
  10. 'defer': require('./defer'),
  11. 'delay': require('./delay'),
  12. 'flip': require('./flip'),
  13. 'memoize': require('./memoize'),
  14. 'negate': require('./negate'),
  15. 'once': require('./once'),
  16. 'overArgs': require('./overArgs'),
  17. 'partial': require('./partial'),
  18. 'partialRight': require('./partialRight'),
  19. 'rearg': require('./rearg'),
  20. 'rest': require('./rest'),
  21. 'spread': require('./spread'),
  22. 'throttle': require('./throttle'),
  23. 'unary': require('./unary'),
  24. 'wrap': require('./wrap')
  25. };