(opcode)
| 17355 | } |
| 17356 | function websocketMessageReceived(ws, type, data) { |
| 17357 | if (ws[kReadyState] !== states.OPEN) { |
| 17358 | return; |
| 17359 | } |
| 17360 | let dataForEvent; |
| 17361 | if (type === opcodes.TEXT) { |
| 17362 | try { |
no outgoing calls
no test coverage detected