app.js (855:f143c7953df7) app.js (1865:3c551b9721df)
1#!/usr/bin/env node
2
1
3require('unit-http').createServer(function (req, res) {
2require('http').createServer(function (req, res) {
4 res.setHeader('Set-Cookie', ['tc=one,two,three', 'tc=four,five,six']);
5 res.end();
6}).listen(7080);
3 res.setHeader('Set-Cookie', ['tc=one,two,three', 'tc=four,five,six']);
4 res.end();
5}).listen(7080);