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

require('http').createServer(function (req, res) {
    res.writeHead(200, {});
    res.setHeader('@$', 'test');
    res.end();
}).listen(7080);