Skip to content

Instantly share code, notes, and snippets.

@an-parubets
Last active December 21, 2019 15:42
Show Gist options
  • Save an-parubets/c389ccab9957dac84e4418cc91b1159c to your computer and use it in GitHub Desktop.
Save an-parubets/c389ccab9957dac84e4418cc91b1159c to your computer and use it in GitHub Desktop.
EventEmitter
/**
* @param {string} eventName
* @param {Function} callback
*/
subscribe(eventName, callback) {
!this.events[eventName] && (this.events[eventName] = []);
this.events[eventName].push(callback);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment