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

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