feat: Add CalendarSelector component and install new dependencies.
This commit is contained in:
9
node_modules/rxjs/dist/esm5/internal/operators/joinAllInternals.js
generated
vendored
Normal file
9
node_modules/rxjs/dist/esm5/internal/operators/joinAllInternals.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
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
|
||||
Reference in New Issue
Block a user