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