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.

_overArg.js 382B

123456789101112131415
  1. /**
  2. * Creates a unary function that invokes `func` with its argument transformed.
  3. *
  4. * @private
  5. * @param {Function} func The function to wrap.
  6. * @param {Function} transform The argument transform.
  7. * @returns {Function} Returns the new function.
  8. */
  9. function overArg(func, transform) {
  10. return function(arg) {
  11. return func(transform(arg));
  12. };
  13. }
  14. module.exports = overArg;