Transform function arguments

JavaScript, Function · Oct 21, 2020

Creates a function that invokes the provided function with its arguments transformed.

  • Use Array.prototype.map() to apply transforms to args in combination with the spread operator (...) to pass the transformed arguments to fn.
const overArgs = (fn, transforms) =>
  (...args) => fn(...args.map((val, i) => transforms[i](val)));
const square = n => n * n;
const double = n => n * 2;
const fn = overArgs((x, y) => [x, y], [square, double]);
fn(9, 3); // [81, 6]

More like this

  • Rearrange function arguments

    Creates a function that invokes the provided function with its arguments arranged according to the specified indexes.

    JavaScript, Function · Oct 22, 2020

  • Invoke functions on arguments

    Creates a function that invokes each provided function with the arguments it receives and returns the results.

    JavaScript, Function · Oct 21, 2020

  • Append function arguments

    Creates a function that invokes fn with partials appended to the arguments it receives.

    JavaScript, Function · Sep 15, 2020