summaryrefslogtreecommitdiffhomepage
path: root/test/node/set_header_array/app.js
blob: 0dee477e4c4b40eec2abcf62faddbadaadadd98b (plain) (blame)
1
2
3
4
5

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