summaryrefslogtreecommitdiffhomepage
path: root/test/node/set_header_array_with_override/app.js
blob: 6b3863a4c331213e1ccc9a2c9085b5b40f99d23e (plain) (blame)
1
2
3
4
5
6

require('http').createServer(function (req, res) {
    res.setHeader('Set-Cookie', ['tc=one,two,three', 'tc=four,five,six']);
    res.setHeader('Set-Cookie', ['tc=one,two,three', 'tc=four,five,six', 'tc=seven,eight,nine']);
    res.end();
}).listen(8080);