diff options
author | Valentin Bartenev <vbart@nginx.com> | 2019-08-06 16:24:11 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2019-08-06 16:24:11 +0300 |
commit | 7fd9444728e1e509630f5ba0f50e7f9da150369c (patch) | |
tree | 2d6c898e0508f9df7e8367eaa64072fedd2c92ac /test/node/write_buffer | |
parent | c7210eaa5a15083715cac574cce055b94860e70e (diff) | |
download | unit-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_buffer')
-rwxr-xr-x | test/node/write_buffer/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/node/write_buffer/app.js b/test/node/write_buffer/app.js index f41de2a1..a7623523 100755 --- a/test/node/write_buffer/app.js +++ b/test/node/write_buffer/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(new Buffer([0x62, 0x75, 0x66, 0x66, 0x65, 0x72])); + res.writeHead(200, {'Content-Type': 'text/plain'}) + .end(new Buffer([0x62, 0x75, 0x66, 0x66, 0x65, 0x72])); }).listen(7080); |