blob: 84c6744225961508e78af7326b9812004d2770f7 (
plain)
1
2
3
4
5
6
7
8
|
function handleRequest(request, response)
{
response.processAsync();
response.setHeader("Content-Type", "text/plain", false);
response.setHeader("X-Frame-Options", "DENY", false);
response.finish();
}
|