|
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:
416 bytes
|
| Line | |
|---|
| 1 | import _ from './underscore.js';
|
|---|
| 2 | import baseIteratee from './_baseIteratee.js';
|
|---|
| 3 |
|
|---|
| 4 | // External wrapper for our callback generator. Users may customize
|
|---|
| 5 | // `_.iteratee` if they want additional predicate/iteratee shorthand styles.
|
|---|
| 6 | // This abstraction hides the internal-only `argCount` argument.
|
|---|
| 7 | export default function iteratee(value, context) {
|
|---|
| 8 | return baseIteratee(value, context, Infinity);
|
|---|
| 9 | }
|
|---|
| 10 | _.iteratee = iteratee;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.