Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Jan 18, 2024
1 parent cede25a commit 494f206
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/v4/plugins/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export const startTCPServer = (
console.log(`received TCP socket error: ${err}. Error will be ignored`);
});
sock.on('data', (data) => {
const msg = parseMattMessage(data.toString())
const v12_decoded_msg = parseMattMessage(atob(msg))
console.log("v12_decoded_msg",v12_decoded_msg)
const msg = parseMattMessage(data.toString());
const v12_decoded_msg = parseMattMessage(atob(msg));
console.log('v12_decoded_msg', v12_decoded_msg);

if (v12_decoded_msg === 'hellotcp') {
sock.write(btoa(generateMattMessage('tcpworld')));
Expand Down

0 comments on commit 494f206

Please sign in to comment.