summaryrefslogtreecommitdiffhomepage
path: root/test/node/mirror
diff options
context:
space:
mode:
authorValentin Bartenev <vbart@nginx.com>2019-08-06 16:24:11 +0300
committerValentin Bartenev <vbart@nginx.com>2019-08-06 16:24:11 +0300
commit7fd9444728e1e509630f5ba0f50e7f9da150369c (patch)
tree2d6c898e0508f9df7e8367eaa64072fedd2c92ac /test/node/mirror
parentc7210eaa5a15083715cac574cce055b94860e70e (diff)
downloadunit-7fd9444728e1e509630f5ba0f50e7f9da150369c.tar.gz
unit-7fd9444728e1e509630f5ba0f50e7f9da150369c.tar.bz2
Node.js: returning "this" from writeHead() to allow chaining.
In Node.js version 11.10.0 and later, the writeHead() function returns "this".
Diffstat (limited to 'test/node/mirror')
-rwxr-xr-xtest/node/mirror/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/node/mirror/app.js b/test/node/mirror/app.js
index abcb87cb..1488917e 100755
--- a/test/node/mirror/app.js
+++ b/test/node/mirror/app.js
@@ -6,7 +6,7 @@ require('unit-http').createServer(function (req, res) {
body += chunk.toString();
});
req.on('end', () => {
- res.writeHead(200, {'Content-Length': Buffer.byteLength(body)});
- res.end(body);
+ res.writeHead(200, {'Content-Length': Buffer.byteLength(body)})
+ .end(body);
});
}).listen(7080);