UNPKG

@sylphide/pdf-actions

Version:

A NPM Package built on top of pdf-lib that provides functonalities like merge, rotate, split and many more...

7 lines (5 loc) 157 B
const pdfArrayToBlob = (pdfArray) => { const blob = new Blob([pdfArray], { type: "application/pdf" }); return blob; }; module.exports = pdfArrayToBlob;