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

reject.js 264B

12345678910
  1. define(['./_cb', './filter', './negate'], function (_cb, filter, negate) {
  2. // Return all the elements for which a truth test fails.
  3. function reject(obj, predicate, context) {
  4. return filter(obj, negate(_cb(predicate)), context);
  5. }
  6. return reject;
  7. });