a677527aea746d04dbce7c824374366f2fa3854ba3aa239b2f2015e615fcac00fd44454696c5c2893d473c40032a06a346b8a3071f3e8e154ac0339180915a 451 B

123456789
  1. import { identity } from '../util/identity';
  2. import { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';
  3. import { pipe } from '../util/pipe';
  4. import { mergeMap } from './mergeMap';
  5. import { toArray } from './toArray';
  6. export function joinAllInternals(joinFn, project) {
  7. return pipe(toArray(), mergeMap(function (sources) { return joinFn(sources); }), project ? mapOneOrManyArgs(project) : identity);
  8. }
  9. //# sourceMappingURL=joinAllInternals.js.map