Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Last active May 7, 2021 18:01
Show Gist options
  • Save NyaGarcia/c08f30d937698b5daef038571cec913a to your computer and use it in GitHub Desktop.
Save NyaGarcia/c08f30d937698b5daef038571cec913a to your computer and use it in GitHub Desktop.
Performing logic with pipeable operators
pokemon$
.pipe(
filter(({ type }) => type !== "Water"),
map(pokemon => getStats(pokemon)),
tap(stats => logStats(stats))
)
.subscribe(stats => saveToPokedex(stats));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment