How to use the shareReplay function from rxjs
Find comprehensive JavaScript rxjs.shareReplay code examples handpicked from public code repositorys.
GitHub: openforis/sepal
14 15 16 17 18 19 20 21 22 23
const delegate$ = aoi$.pipe( map(aoi => visualizationType && visualizationType !== 'changes' ? toMosaic(aoi, recipe, args) : toChanges(recipe, args) ), shareReplay() ) return { getImage$() { return delegate$.pipe(
45
177
0