(opcode)
| 17352 | function fireEvent(e, target, eventFactory = (type, init) => new Event(type, init), eventInitDict = {}) { |
| 17353 | const event = eventFactory(e, eventInitDict); |
| 17354 | target.dispatchEvent(event); |
| 17355 | } |
| 17356 | function websocketMessageReceived(ws, type, data) { |
| 17357 | if (ws[kReadyState] !== states.OPEN) { |
| 17358 | return; |
| 17359 | } |
no outgoing calls
no test coverage detected