()
| 278 | |
| 279 | var EventEmitter = function () { |
| 280 | function EventEmitter() { |
| 281 | var events = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; |
| 282 | |
| 283 | _classCallCheck(this, EventEmitter); |
| 284 | |
| 285 | this.events = new Map(events); |
| 286 | } |
| 287 | |
| 288 | _createClass(EventEmitter, [{ |
| 289 | key: "on", |
nothing calls this directly
no test coverage detected