frontend/.pnpm-store/v3/files/ed/8ab7468e090ff69e18b7343727ec7196f88c24e8e913864cc1f474082207217dcd8a825bc49309d61507de23a33c0476c12fc618623b8c905d12451ead0a0d

9 lines
433 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((sources) => joinFn(sources)), project ? mapOneOrManyArgs(project) : identity);
}
//# sourceMappingURL=joinAllInternals.js.map