UNPKG

react-images-extended-2-stable

Version:

A simple, responsive lightbox component for displaying an array of images with React.js with extended features ((stable version))

9 lines (8 loc) 231 B
import { pdfjs } from "react-pdf"; export async function getPDFMetadata(pdfUrl) { const loadingTask = pdfjs.getDocument(pdfUrl); const pdf = await loadingTask.promise; return { pageCount: pdf.numPages, }; }