source: node_modules/lodash/_createOver.js@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 780 bytes
RevLine 
[d24f17c]1var apply = require('./_apply'),
2 arrayMap = require('./_arrayMap'),
3 baseIteratee = require('./_baseIteratee'),
4 baseRest = require('./_baseRest'),
5 baseUnary = require('./_baseUnary'),
6 flatRest = require('./_flatRest');
7
8/**
9 * Creates a function like `_.over`.
10 *
11 * @private
12 * @param {Function} arrayFunc The function to iterate over iteratees.
13 * @returns {Function} Returns the new over function.
14 */
15function createOver(arrayFunc) {
16 return flatRest(function(iteratees) {
17 iteratees = arrayMap(iteratees, baseUnary(baseIteratee));
18 return baseRest(function(args) {
19 var thisArg = this;
20 return arrayFunc(iteratees, function(iteratee) {
21 return apply(iteratee, thisArg, args);
22 });
23 });
24 });
25}
26
27module.exports = createOver;
Note: See TracBrowser for help on using the repository browser.