Skip to content

Instantly share code, notes, and snippets.

View Hussein-miracle's full-sized avatar
focused and constantly learning

Hussein Abdullahi Hussein-miracle

focused and constantly learning
View GitHub Profile
export default class EventEmitter
{
constructor()
{
this.callbacks = {}
this.callbacks.base = {}
}
on(_names, callback)
{