_.spread(func, [start=0])
Creates a function that invokes func with the this binding of the create function and an array of arguments much like Function#apply.
Note: This method is based on the spread operator.
Arguments
func (Function)
: The function to spread arguments over.
[start=0] (number)
: The start position of the spread.
Returns
(Function)
:Returns the new function.