Creates a function that invokes iteratees with the arguments it receives and returns their results.
iteratees
Optional
The iteratees to invoke.
Returns the new function.
4.0.0
const func = over([Math.max, Math.min])func(1, 2, 3, 4)// => [4, 1] Copy
const func = over([Math.max, Math.min])func(1, 2, 3, 4)// => [4, 1]
Creates a function that invokes
iteratees
with the arguments it receives and returns their results.