Skip to content

Instantly share code, notes, and snippets.

@an-parubets
Last active December 21, 2019 12:50
Show Gist options
  • Save an-parubets/1f89c6df905d301bbdecf63ba82b2d9d to your computer and use it in GitHub Desktop.
Save an-parubets/1f89c6df905d301bbdecf63ba82b2d9d to your computer and use it in GitHub Desktop.
EventEmitter
class EventEmitter {
constructor() {
this.events = {};
}
subscribe() {}
unsubscribe() {}
emit() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment