_baseRest.js 557 B

1234567891011121314151617
  1. import identity from './identity.js';
  2. import overRest from './_overRest.js';
  3. import setToString from './_setToString.js';
  4. /**
  5. * The base implementation of `_.rest` which doesn't validate or coerce arguments.
  6. *
  7. * @private
  8. * @param {Function} func The function to apply a rest parameter to.
  9. * @param {number} [start=func.length-1] The start position of the rest parameter.
  10. * @returns {Function} Returns the new function.
  11. */
  12. function baseRest(func, start) {
  13. return setToString(overRest(func, start, identity), func + '');
  14. }
  15. export default baseRest;