(data: any)
| 275 | if (__FIREFOX_MV2__) { |
| 276 | socket.onmessage = (e) => { |
| 277 | function respond(data: any) { |
| 278 | socket.send(JSON.stringify({id, data})); |
| 279 | } |
| 280 | |
| 281 | const {id, data, type} = JSON.parse(e.data); |
| 282 | switch (type) { |
no outgoing calls
no test coverage detected
searching dependent graphs…