Skip to content

Instantly share code, notes, and snippets.

@hozefam
Created April 2, 2021 19:55
Show Gist options
  • Save hozefam/1e86c54a3e85eb476baca0788a44ad0b to your computer and use it in GitHub Desktop.
Save hozefam/1e86c54a3e85eb476baca0788a44ad0b to your computer and use it in GitHub Desktop.
fromEvent - RxJS
import events from 'events';
const eventEmitter = new events.EventEmitter();
eventEmitter.on('click', () => {});
fromEvent(eventEmitter, 'click').subscribe((x) => log('click event called'));
eventEmitter.emit('click');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment