frontend/.pnpm-store/v3/files/a2/a677527aea746d04dbce7c824374366f2fa3854ba3aa239b2f2015e615fcac00fd44454696c5c2893d473c40032a06a346b8a3071f3e8e154ac0339180915a

9 lines
451 B
Plaintext

import { identity } from '../util/identity';
import { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';
import { pipe } from '../util/pipe';
import { mergeMap } from './mergeMap';
import { toArray } from './toArray';
export function joinAllInternals(joinFn, project) {
return pipe(toArray(), mergeMap(function (sources) { return joinFn(sources); }), project ? mapOneOrManyArgs(project) : identity);
}
//# sourceMappingURL=joinAllInternals.js.map