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

partition.js 385B

123456789101112
  1. /** PURE_IMPORTS_START _util_not,_filter PURE_IMPORTS_END */
  2. import { not } from '../util/not';
  3. import { filter } from './filter';
  4. export function partition(predicate, thisArg) {
  5. return function (source) {
  6. return [
  7. filter(predicate, thisArg)(source),
  8. filter(not(predicate, thisArg))(source)
  9. ];
  10. };
  11. }
  12. //# sourceMappingURL=partition.js.map