Skip to content

Instantly share code, notes, and snippets.

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 traviskaufman/a376aa696a61b81be6510ead268a8edf to your computer and use it in GitHub Desktop.
Save traviskaufman/a376aa696a61b81be6510ead268a8edf to your computer and use it in GitHub Desktop.
Demystifying RxJS, Part II: concatMap test
outer
.pipe(concatMap(createInner))
.subscribe(x => console.log("[concatMap] outer:", x), undefined, () =>
console.log("[concatMap] done!")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment