Skip to content
View kylepillay's full-sized avatar
🙃
🙃

Block or report kylepillay

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. A Utility that can be extended from ... A Utility that can be extended from any class to add event listening and emitting abilities. The second file is an example of how to instantiate and export your class for it to be a 'Singleton'.
    1
    export default class EventEmitter {
    2
    
                  
    3
        constructor() {
    4
            this.events = {};
    5
        }