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.

_createCurry.js 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. var apply = require('./_apply'),
  2. createCtor = require('./_createCtor'),
  3. createHybrid = require('./_createHybrid'),
  4. createRecurry = require('./_createRecurry'),
  5. getHolder = require('./_getHolder'),
  6. replaceHolders = require('./_replaceHolders'),
  7. root = require('./_root');
  8. /**
  9. * Creates a function that wraps `func` to enable currying.
  10. *
  11. * @private
  12. * @param {Function} func The function to wrap.
  13. * @param {number} bitmask The bitmask flags. See `createWrap` for more details.
  14. * @param {number} arity The arity of `func`.
  15. * @returns {Function} Returns the new wrapped function.
  16. */
  17. function createCurry(func, bitmask, arity) {
  18. var Ctor = createCtor(func);
  19. function wrapper() {
  20. var length = arguments.length,
  21. args = Array(length),
  22. index = length,
  23. placeholder = getHolder(wrapper);
  24. while (index--) {
  25. args[index] = arguments[index];
  26. }
  27. var holders = (length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder)
  28. ? []
  29. : replaceHolders(args, placeholder);
  30. length -= holders.length;
  31. if (length < arity) {
  32. return createRecurry(
  33. func, bitmask, createHybrid, wrapper.placeholder, undefined,
  34. args, holders, undefined, undefined, arity - length);
  35. }
  36. var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;
  37. return apply(fn, this, args);
  38. }
  39. return wrapper;
  40. }
  41. module.exports = createCurry;