Angular - RxJS Operators
You want to handle user search input so that if a search is running, new inputs are ignored until it finishes. Which operator should you use and why?
searchInput$.pipe( ???(query => performSearch(query)) ).subscribe(results => display(results));
