Integrate suggestion from review to improve consistency with existing code.
1 function handleRequest(request, response)
3 // Echos the referrer back to the requester.
4 response.setHeader('Content-Type', 'text/plain', false);
5 response.write(request.getHeader('Referer'));