Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Last active May 7, 2021 17:55
Show Gist options
  • Select an option

  • Save NyaGarcia/108faab1122e120706e1edfa3af237fc to your computer and use it in GitHub Desktop.

Select an option

Save NyaGarcia/108faab1122e120706e1edfa3af237fc to your computer and use it in GitHub Desktop.
Misuse of subscribe by placing logic inside it
pokemon$.subscribe((pokemon: Pokemon) => {
if (pokemon.type === "Water") {
return;
}
const pokemonStats = getStats(pokemon);
logStats(pokemonStats);
saveToPokedex(pokemonStats);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment