Stirling-PDF/server-node/src/utils/endpoint-utils.js
2023-10-27 01:33:11 +03:00

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'))
}