TenantAtlas/apps/platform/.pnpm-store/v10/files/8e/6cbd88517c99c2090f65bdeaa84309fe1d90332aeb242093a11d0ceed94a07b0e82beea56eb0e2e46cffaacc630fb62c214d8365817900ab276dcddeca6723
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

8 lines
289 B
Plaintext

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