Files
lodash/over.js
John-David Dalton f10bb8b80b Bump to v4.10.0.
2016-04-10 22:55:59 -07:00

25 lines
594 B
JavaScript

import arrayMap from './_arrayMap';
import createOver from './_createOver';
/**
* Creates a function that invokes `iteratees` with the arguments it receives
* and returns their results.
*
* @static
* @memberOf _
* @since 4.0.0
* @category Util
* @param {...(Array|Array[]|Function|Function[]|Object|Object[]|string|string[])}
* [iteratees=[_.identity]] The iteratees to invoke.
* @returns {Function} Returns the new function.
* @example
*
* var func = _.over(Math.max, Math.min);
*
* func(1, 2, 3, 4);
* // => [4, 1]
*/
var over = createOver(arrayMap);
export default over;