mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-10-15 11:16:24 +02:00
10 lines
290 B
JavaScript
10 lines
290 B
JavaScript
|
|
export function respondWithBinaryPdf(res, buffer, filename) {
|
|
res.writeHead(200, {
|
|
'Content-Type': "application/pdf",
|
|
'Content-disposition': 'attachment;filename=' + filename,
|
|
'Content-Length': buffer.length
|
|
});
|
|
res.end(Buffer.from(buffer, 'binary'))
|
|
}
|