Category "rxjs6"

Pausable buffer with RxJS

I'm trying to implement a togglable auto-save feature using RxJS streams. The goal is to: While auto-save is enabled, send changes to the server as they come.

Property 'filter' does not exist on type 'unknown' Observable<Course[]> in Rxjs 6

As I'm trying to use filter like this. beginnerCourses$: Observable<Course[]>; advancedCourses$: Observable<Course[]>; ngOnInit() {

RxJS pipe to filter into 2+branches

Let's assume we have a Subject, that can return a given set of values, all of which might require a different approach to them. We could debate whether or not t