Is there any way to use a map function in RxJs from the observable's emitted value's property?
Let's say I have an Observable of type: Observable<Something>, and Something has a property called mapFunction with the value: mapTo({ isTicking: true }). Is there anyway I can use this map function on that observable? Like this:
private composingObs$ = this.streamOfSomethings$.pipe( // I would like to use the instance function: something.mapFunction as map here.
streamOfSomethings?