UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

10 lines (9 loc) 289 B
export default flatRest; /** * A specialized version of `baseRest` which flattens the rest array. * * @private * @param {Function} func The function to apply a rest parameter to. * @returns {Function} Returns the new function. */ declare function flatRest(func: Function): Function;