summaryrefslogtreecommitdiffhomepage
path: root/test/node/set_header_array/app.js
blob: 965330e27d49738b1536c95f9873be44bf6e8364 (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(7080);