TenantAtlas/apps/platform/.pnpm-store/v10/files/48/ef887a9eaa4257f137aa2672f3214b6a5664d546e0fd159dceecf47047388058212e372a99865cb7b00d384ae774edfa2225cd41fb78716953b94686d5f434
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

7 lines
388 B
Plaintext

import { operate } from '../util/lift';
import { mergeInternals } from './mergeInternals';
export function expand(project, concurrent = Infinity, scheduler) {
concurrent = (concurrent || 0) < 1 ? Infinity : concurrent;
return operate((source, subscriber) => mergeInternals(source, subscriber, project, concurrent, undefined, true, scheduler));
}
//# sourceMappingURL=expand.js.map