| 1 | export class EventManager{ |
| 2 | private events: Map<string, Array<Function>> = new Map<string, Array<Function>>() |
| 3 | on(id: string, event: Function){ |
| 4 | if ( this.events.has(id) == false) { |
nothing calls this directly
no outgoing calls
no test coverage detected