|
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:
455 bytes
|
| Line | |
|---|
| 1 | var underscore = require('./underscore.js');
|
|---|
| 2 | var _baseIteratee = require('./_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 | function iteratee(value, context) {
|
|---|
| 8 | return _baseIteratee(value, context, Infinity);
|
|---|
| 9 | }
|
|---|
| 10 | underscore.iteratee = iteratee;
|
|---|
| 11 |
|
|---|
| 12 | module.exports = iteratee;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.