TenantAtlas/apps/platform/.pnpm-store/v10/files/71/a037bf680d2bc807a24cf9c65504281ce0c9d101f4aff0b15c3f3202dbc18a8b1e3afe9d536f0427de084344aa7d48b9596340cc8fbe7c84a849298e2be4d6
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

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