remove newline at end of file

This commit is contained in:
jomo 2015-01-03 17:50:44 +01:00
parent 63d934e743
commit 4a3b635166
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ module.exports = function(req, res) {
}); });
res.writeHead(200, { res.writeHead(200, {
"Content-Length": html.length, "Content-Length": html.length,
"Content-Type": "text/html; charset=utf-8" "Content-Type": "text/html; charset=utf-8"
}); });
res.end(html); res.end(html);
}; };