over

Util
since 4.0.0

Arguments

  • ...(Function|Function[]) The iteratees to invoke.

Returns

Function the new function.

Creates a function that invokes iteratees with the arguments it receives and returns their results.

Example of Lodash _.over

var func = _.over([Math.max, Math.min]);

func(1, 2, 3, 4);
// => [4, 1]