Skip to content

Instantly share code, notes, and snippets.

@ssougnez
Last active March 11, 2021 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssougnez/fa9337baeefb4975a10170212d0adc66 to your computer and use it in GitHub Desktop.
Save ssougnez/fa9337baeefb4975a10170212d0adc66 to your computer and use it in GitHub Desktop.
const s = interval(1000)
.pipe(
map(() => interval(1000).pipe(tap(() => console.log('foo'))).subscribe())
)
.subscribe(() => console.log('bar'));
setTimeout(() => s.unsubscribe(), 3500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment