()
| 11613 | // USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 11614 | |
| 11615 | function EventEmitter() { |
| 11616 | this._events = this._events || {}; |
| 11617 | this._maxListeners = this._maxListeners || undefined; |
| 11618 | } |
| 11619 | module.exports = EventEmitter; |
| 11620 | |
| 11621 | // Backwards-compat with node 0.10.x |
nothing calls this directly
no outgoing calls
no test coverage detected