Skip to content

Instantly share code, notes, and snippets.

@Armenvardanyan95
Created June 18, 2020 09:19
Show Gist options
  • Save Armenvardanyan95/5307db9036b303dd001b7362ef20b8ce to your computer and use it in GitHub Desktop.
Save Armenvardanyan95/5307db9036b303dd001b7362ef20b8ce to your computer and use it in GitHub Desktop.
fromEvent(document.querySelector('input'), 'input').pipe(
debounceTime(300),
map(event => (event.target as HTMLInputElement).value),
switchMap(query => getData(query).pipe(
switchAll(),
map(({firstName, lastName}) => firstName + ' ' + lastName),
toArray(),
)),
).subscribe(console.log);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment