scratch0-5 / lib_node /WebSocket.js
soiz1's picture
Upload folder using huggingface_hub
8f3f8db verified
raw
history blame contribute delete
340 Bytes
// This a Wrapper for the node ws WebSocket implementation to resemble the
// browser WebSocket implementation better.
var WebSocket = require("./ws/websocket");
class SafeWebSocketClient extends WebSocket {
constructor(url, protocols) {
super(url, protocols, { perMessageDeflate: false });
}
}
module.exports = SafeWebSocketClient;