a037bf680d2bc807a24cf9c65504281ce0c9d101f4aff0b15c3f3202dbc18a8b1e3afe9d536f0427de084344aa7d48b9596340cc8fbe7c84a849298e2be4d6 259 B

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