d178113ad60e7a9b9fb1865471ab081b806867957d1edad9fe0df208d15d018aab0b9a269805a1eff9d32999e161613148065d3c974579ab12b183eed2eac6 281 B

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