Highlighting API consistency improvements
RxJS 7 also ships with a fix of some weird behavior in the library. Let's consider the example of a concat
operator:
Let's consider the following sample:
concat( of(1).pipe( tap(() => console.log('tap 1')), delay(100), finalize(() => console.log('Finalize 1')) ), of(2).pipe( tap(() => console.log('tap 2')), delay(100), finalize(() => console.log('Finalize 2')) ) ...