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

_cb.js 442B

123456789101112
  1. define(['./_baseIteratee', './underscore', './iteratee'], function (_baseIteratee, underscore, iteratee) {
  2. // The function we call internally to generate a callback. It invokes
  3. // `_.iteratee` if overridden, otherwise `baseIteratee`.
  4. function cb(value, context, argCount) {
  5. if (underscore.iteratee !== iteratee) return underscore.iteratee(value, context);
  6. return _baseIteratee(value, context, argCount);
  7. }
  8. return cb;
  9. });