diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2023-09-26 12:49:39 +0100 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2023-09-26 12:49:39 +0100 |
commit | e0c26757740fa7974af6e6592e35b5f2e00339fe (patch) | |
tree | 78651c9a5c94ced2a57c12f03ffa97ffe6e73ed4 /test/node/write_array | |
parent | 0f630c3f604e76de370529907b51ad29dfdc4ecb (diff) | |
download | unit-e0c26757740fa7974af6e6592e35b5f2e00339fe.tar.gz unit-e0c26757740fa7974af6e6592e35b5f2e00339fe.tar.bz2 |
Node.js: response body chunk can now be a Uint8Array.
Starting from Node.js 15.0.0 the chunk parameter of the response.write()
can be a Uint8Array.
This closes #870 issue on GitHub.
Diffstat (limited to 'test/node/write_array')
-rw-r--r-- | test/node/write_array/app.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/node/write_array/app.js b/test/node/write_array/app.js new file mode 100644 index 00000000..b7abb3fc --- /dev/null +++ b/test/node/write_array/app.js @@ -0,0 +1,4 @@ +require('http').createServer(function (req, res) { + res.writeHead(200, {'Content-Length': 5, 'Content-Type': 'text/plain'}) + .end(new Uint8Array(Buffer.from('array', 'utf8'))); +}).listen(7080); |