Source code
Revision control
Copy as Markdown
Other Tools
/* Any copyright is dedicated to the Public Domain.
"use strict";
function handleRequest(request, response) {
response.setHeader("Cache-Control", "no-store", false);
response.setHeader("Content-Type", "application/pdf", false);
response.setHeader(
"Content-Disposition",
'attachment; filename="file_pdfjs_attachment.pdf"',
false
);
response.write("%PDF-1.7\n%%EOF\n");
}