Last active
December 21, 2019 15:42
-
-
Save an-parubets/c389ccab9957dac84e4418cc91b1159c to your computer and use it in GitHub Desktop.
EventEmitter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @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