| 4 | // Similar to node's builtin EventEmitter, but is also aware of our `Event` |
| 5 | // class, and so `emit` respects `stopImmediatePropagation()`. |
| 6 | export class EventEmitter extends NodeEventEmitter { |
| 7 | constructor() { |
| 8 | super() |
| 9 | // Disable the default maxListeners warning. In React, many components |
nothing calls this directly
no outgoing calls
no test coverage detected