Ramda Adjunct 2.33.0

curryRightN.js

  1. import { curryN, reverse } from 'ramda';
  2. /**
  3. * Returns a curried equivalent of the provided function, with the specified arity.
  4. * This function is like curryN, except that the provided arguments order is reversed.
  5. *
  6. * @func curryRightN
  7. * @memberOf RA
  8. * @since {@link https://char0n.github.io/ramda-adjunct/1.12.0|v1.12.0}
  9. * @category Function
  10. * @sig Number -> (* -> a) -> (* -> a)
  11. * @param {number} length The arity for the returned function
  12. * @param {Function} fn The function to curry
  13. * @return {Function} A new, curried function
  14. * @see {@link http://ramdajs.com/docs/#curryN|R.curryN}, {@link RA.curryRight|curryRight}
  15. * @example
  16. *
  17. * const concatStrings = (a, b, c) => a + b + c;
  18. * const concatStringsCurried = RA.curryRightN(3, concatStrings);
  19. *
  20. * concatStringCurried('a')('b')('c'); // => 'cba'
  21. */
  22. const curryRightN = curryN(2, (arity, fn) =>
  23. curryN(arity, function wrapper(...args) {
  24. return fn.apply(this, reverse(args));
  25. })
  26. );
  27. export default curryRightN;