How to use the CLOSING function from ws
Find comprehensive JavaScript ws.CLOSING code examples handpicked from public code repositorys.
GitHub: szmarczak/http2-wrapper
6 7 8 9 10 11 12 13 14 15
const connect = (url, options) => { const ws = new WebSocket(null); ws._isServer = false; const destroy = async error => { ws._readyState = WebSocket.CLOSING; await Promise.resolve(); ws.emit('error', error); };
16
223
7
+ 5 other calls in file