[autofix.ci] apply automated fixes
authorautofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Thu, 25 Jul 2024 17:51:26 +0000 (17:51 +0000)
committerGitHub <noreply@github.com>
Thu, 25 Jul 2024 17:51:26 +0000 (17:51 +0000)
examples/typescript/websocket-server-pool/ws-cluster/src/worker.ts
examples/typescript/websocket-server-pool/ws-hybrid/src/websocket-server-worker.ts
examples/typescript/websocket-server-pool/ws-worker_threads/src/main.ts

index d9091e7f0eb1c27ea0ecf208d9495a4e8ca4578f..353e8ccc30cc99b87b5bd183ba4dc7b0e28ff641 100644 (file)
@@ -41,7 +41,7 @@ class WebSocketServerWorker extends ClusterWorker<WorkerData, WorkerResponse> {
       ws.on('error', console.error)
       ws.on('message', (message: RawData) => {
         const { type, data } = JSON.parse(
-          // eslint-disable-next-line @typescript-eslint/no-base-to-string
+
           message.toString()
         ) as MessagePayload<DataPayload>
         switch (type) {
index 72ac2a1baef359eb635543a2e7ac68dcb080e832..8d3f370a44dd3c54ea3ab98668c8081741fc6e63 100644 (file)
@@ -56,7 +56,7 @@ class WebSocketServerWorker extends ClusterWorker<
       ws.on('error', console.error)
       ws.on('message', (message: RawData) => {
         const { type, data } = JSON.parse(
-          // eslint-disable-next-line @typescript-eslint/no-base-to-string
+
           message.toString()
         ) as MessagePayload<DataPayload>
         switch (type) {
index cb28beebb18b9eaa4579b7630ef0a23bc8ceadfb..9006a5f26637234907f9392f048b874c3e0a7cd1 100644 (file)
@@ -18,7 +18,7 @@ wss.on('connection', ws => {
   ws.on('error', console.error)
   ws.on('message', (message: RawData) => {
     const { type, data } = JSON.parse(
-      // eslint-disable-next-line @typescript-eslint/no-base-to-string
+
       message.toString()
     ) as MessagePayload<DataPayload>
     switch (type) {