Skip to content

Instantly share code, notes, and snippets.

@armanozak
Created May 3, 2021 09:15
Show Gist options
  • Save armanozak/657ba48bf7095c5d2f68cc7af9fa0307 to your computer and use it in GitHub Desktop.
Save armanozak/657ba48bf7095c5d2f68cc7af9fa0307 to your computer and use it in GitHub Desktop.
[What's New in RxJS 7] RxJS 6 timeoutWith #blog #rxjs
import { timer } from "rxjs";
import { timeoutWith } from "rxjs/operators";
timer(5000, 1000)
.pipe(timeoutWith(2000, of("timeout")))
.subscribe(console.log);
// (after ~2s) timeout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment