UNPKG

compactor

Version:

Compress pdf and img on browser

8 lines (5 loc) 280 B
import * as pdfjsLib from "pdfjs-dist/legacy/build/pdf"; import PDFJSWorker from "pdfjs-dist/legacy/build/pdf.worker.entry"; pdfjsLib.GlobalWorkerOptions.workerSrc = PDFJSWorker; const readPDF = (pdf_url) => pdfjsLib.getDocument(pdf_url).promise; export default readPDF;