projects
/
nodejsws.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
semi-functional
[nodejsws.git]
/
purls
/
web_nobody.js
1
function process(request, response, callback) {
2
response.writeHead(302, { 'Location':'/body/'})
3
callback(request, response);
4
}
5
6
7
exports.process = process;
8
exports.requireBody = function() { return false;};