I am following this document for pdfkit. i have installed and created into pdf but when I attempted to upload my created files to azure blob storage, it returns an error.
An error message appears using JavaScript.
const doc = new PDFDocument();
doc.fontSize(27).text("test", 100, 100);
doc.end();
const uploadBlobResponse = await blockBlobClient.upload(
doc,
Buffer.byteLength(doc)
);
Pdfkit is a medium active ecosystem, and I am using latest version of pdfkit only.
