Given an Observable like:
Rx.Observable.interval(1000).map(n => n * 3).filter(n => n % 2)
it would be nice to visualize how the values flow from the
interval
to
map
and through the
filter
.