source: frontend/node_modules/underscore/modules/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: 416 bytes
Line 
1import _ from './underscore.js';
2import 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.
7export 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.