Sends a binary message to the client.
Symbol
ServerWebSocket.sendBinary
@param data
The data to send.
@param compress
Should the data be compressed? If the client does not support compression, this is ignored.
ws.send(new TextEncoder().encode("Hello!"));
ws.send(new Uint8Array([1, 2, 3, 4]), true);
Referenced types
type BufferSource = NodeJS.TypedArray | DataView | ArrayBufferLike