Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
No EOL
451 B
Text
9 lines
No EOL
451 B
Text
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 |