Explore all RxJS operators

conversion

Deprecated pipeable operator
import { merge } from 'rxjs/operators';
a$.pipe(merge(b$, c$));

Creation operator
import { merge } from 'rxjs';
merge(a$, b$, c$);
Convert deprecated operators before RxJS 7 »
Partitioning
  • partition
  • In RxJS 6.5, the partition operator is deprecated in favor of a new static creation function.

    import { partition } from 'rxjs';
    const [b$, c$] = partition(a$, predicate);