frontend/.pnpm-store/v3/files/48/ef887a9eaa4257f137aa2672f3214b6a5664d546e0fd159dceecf47047388058212e372a99865cb7b00d384ae774edfa2225cd41fb78716953b94686d5f434

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