|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
780 bytes
|
| Line | |
|---|
| 1 | var 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 | */
|
|---|
| 15 | function 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 |
|
|---|
| 27 | module.exports = createOver;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.