(...args)
| 5 | let DEBUG = false; |
| 6 | |
| 7 | const logIfDebug = (...args) => { |
| 8 | console.log("DEBUG flag -> ", cordova.websocket.DEBUG) |
| 9 | if (cordova.websocket.DEBUG) { |
| 10 | console.log(...args); |
| 11 | } |
| 12 | }; |
| 13 | |
| 14 | class WebSocketInstance extends EventTarget { |
| 15 | constructor(url, instanceId, binaryType) { |
no test coverage detected