UNPKG

@pdftron/webviewer-react-toolkit

Version:

A React component library for integrating with PDFTron WebViewer API.

9 lines (8 loc) 217 B
export function logExecTime(tag) { const now = performance.now(); return () => { const now2 = performance.now(); console.log(`${tag} took ${now2 - now}ms`); return now2 - now; }; }