Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

iteratee.js 453B

12345678910111213
  1. define(['./_baseIteratee', './underscore'], function (_baseIteratee, underscore) {
  2. // External wrapper for our callback generator. Users may customize
  3. // `_.iteratee` if they want additional predicate/iteratee shorthand styles.
  4. // This abstraction hides the internal-only `argCount` argument.
  5. function iteratee(value, context) {
  6. return _baseIteratee(value, context, Infinity);
  7. }
  8. underscore.iteratee = iteratee;
  9. return iteratee;
  10. });