mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
33 lines
1021 B
JavaScript
33 lines
1021 B
JavaScript
import apply from './_apply.js';
|
|
import arrayMap from './_arrayMap.js';
|
|
import baseFlatten from './_baseFlatten.js';
|
|
import baseIteratee from './_baseIteratee.js';
|
|
import baseUnary from './_baseUnary.js';
|
|
import isArray from './isArray.js';
|
|
import isFlattenableIteratee from './_isFlattenableIteratee.js';
|
|
import rest from './rest.js';
|
|
|
|
/**
|
|
* Creates a function like `_.over`.
|
|
*
|
|
* @private
|
|
* @param {Function} arrayFunc The function to iterate over iteratees.
|
|
* @returns {Function} Returns the new over function.
|
|
*/
|
|
function createOver(arrayFunc) {
|
|
return rest(function(iteratees) {
|
|
iteratees = (iteratees.length == 1 && isArray(iteratees[0]))
|
|
? arrayMap(iteratees[0], baseUnary(baseIteratee))
|
|
: arrayMap(baseFlatten(iteratees, 1, isFlattenableIteratee), baseUnary(baseIteratee));
|
|
|
|
return rest(function(args) {
|
|
var thisArg = this;
|
|
return arrayFunc(iteratees, function(iteratee) {
|
|
return apply(iteratee, thisArg, args);
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
export default createOver;
|