Skip to content

Instantly share code, notes, and snippets.

@Yago
Created May 2, 2017 07:40
Show Gist options
  • Save Yago/8c979f622fe926435ee3be96c5ad9919 to your computer and use it in GitHub Desktop.
Save Yago/8c979f622fe926435ee3be96c5ad9919 to your computer and use it in GitHub Desktop.
const trigger = new Rx.Subject();
const action = trigger.subscribe(() => {
console.log('Fire 🚀 !')
});
// Somewhere else
trigger.next();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment