(no title)
capn_duck | 1 year ago
export function pipeline(in$: Observable<Product>):
Observable<string> {
return in$.pipe(
mergeMap(product => from(product.Images)),
);
}
Why use mergeMap at all here? Why not not just return in$.pipe(
map(product => product.Images),
);
I get that this is a toy example, not trying to be pedantic.
kermerlerper|1 year ago
The latter pipeline would releases batches/arrays of images.