summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_return/app.js
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/write_return/app.js
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/write_return/app.js')
-rwxr-xr-xtest/node/write_return/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/node/write_return/app.js b/test/node/write_return/app.js
index 3ae967c6..82dfbc6e 100755
--- a/test/node/write_return/app.js
+++ b/test/node/write_return/app.js
@@ -1,6 +1,6 @@
#!/usr/bin/env node
require('unit-http').createServer(function (req, res) {
- res.writeHead(200, {'Content-Type': 'text/plain'});
- res.end(res.write('body').toString());
+ res.writeHead(200, {'Content-Type': 'text/plain'})
+ .end(res.write('body').toString());
}).listen(7080);