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

12345678910
  1. 'use strict';
  2. module.exports = function every(array, predicate) {
  3. for (var i = 0; i < array.length; i += 1) {
  4. if (!predicate(array[i], i, array)) {
  5. return false;
  6. }
  7. }
  8. return true;
  9. };