We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79dfc3f commit 1d3793eCopy full SHA for 1d3793e
test/fixtures/net-fd-passing-receiver.js
@@ -15,12 +15,12 @@ receiver = net.createServer(function(socket) {
15
});
16
17
passedSocket.on('data', function(data) {
18
- passedSocket.send('[echo] ' + data);
+ passedSocket.send(`[echo] ${data}`);
19
20
passedSocket.on('close', function() {
21
receiver.close();
22
23
- passedSocket.send('[greeting] ' + greeting);
+ passedSocket.send(`[greeting] ${greeting}`);
24
25
26
0 commit comments