source: frontend/node_modules/underscore/cjs/iteratee.js

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