Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: convert callback to arrow function
add newline at EOF 👍

Add EOF 👍

fix 👍

fix 👍

fix 👍
  • Loading branch information
jamesgeorge007 committed Nov 25, 2018
commit b210dc2021d72218e7caa6f726cb066fe79946a2
2 changes: 1 addition & 1 deletion test/pummel/test-net-pause.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const server = net.createServer((connection) => {
server.on('listening', () => {
const client = net.createConnection(common.PORT);
client.setEncoding('ascii');
client.on('data', function(d) {
client.on('data', (d) => {
console.log(d);
recv += d;
});
Expand Down