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

partition.js 281B

123456789
  1. import { not } from '../util/not';
  2. import { filter } from './filter';
  3. export function partition(predicate, thisArg) {
  4. return (source) => [
  5. filter(predicate, thisArg)(source),
  6. filter(not(predicate, thisArg))(source)
  7. ];
  8. }
  9. //# sourceMappingURL=partition.js.map