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 6e7a444 commit bf9eb04Copy full SHA for bf9eb04
test/fixtures/net-fd-passing-receiver.js
@@ -36,12 +36,12 @@ receiver = net.createServer(function(socket) {
36
});
37
38
passedSocket.on('data', function(data) {
39
- passedSocket.send('[echo] ' + data);
+ passedSocket.send(`[echo] ${data}`);
40
41
passedSocket.on('close', function() {
42
receiver.close();
43
44
- passedSocket.send('[greeting] ' + greeting);
+ passedSocket.send(`[greeting] ${greeting}`);
45
46
47
0 commit comments