Skip to content

Instantly share code, notes, and snippets.

@adrianfaciu
Created August 30, 2018 07:54
Show Gist options
  • Save adrianfaciu/0dab271399b7e6936717848851e923ef to your computer and use it in GitHub Desktop.
Save adrianfaciu/0dab271399b7e6936717848851e923ef to your computer and use it in GitHub Desktop.
const filteredSearchStream$ = this.searchStream$.pipe(
debounceTime(200),
distinctUntilChanged(),
startWith('')
);
const devFilterStream$ = this.filterStream$.pipe(startWith(false));
combineLatest(filteredSearchStream$, devFilterStream$).subscribe(
([searchTerm, onlyDevs]) => this.filterEmployees(searchTerm, onlyDevs)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment