Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

17 righe
455 B

  1. import flatten from './flatten.js';
  2. import overRest from './_overRest.js';
  3. import setToString from './_setToString.js';
  4. /**
  5. * A specialized version of `baseRest` which flattens the rest array.
  6. *
  7. * @private
  8. * @param {Function} func The function to apply a rest parameter to.
  9. * @returns {Function} Returns the new function.
  10. */
  11. function flatRest(func) {
  12. return setToString(overRest(func, undefined, flatten), func + '');
  13. }
  14. export default flatRest;