source: frontend/node_modules/underscore/amd/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: 453 bytes
Line 
1define(['./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.