frontend/.pnpm-store/v3/files/71/a037bf680d2bc807a24cf9c65504281ce0c9d101f4aff0b15c3f3202dbc18a8b1e3afe9d536f0427de084344aa7d48b9596340cc8fbe7c84a849298e2be4d6

6 lines
259 B
Plaintext

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