Guest User

Untitled

a guest
Nov 27th, 2024
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.21 KB | Source Code | 0 0
  1.   const isPageReload = (() => {
  2.     const entries = window.performance.getEntriesByType(
  3.       'navigation',
  4.     ) as PerformanceNavigationTiming[];
  5.     return entries.some((nav) => nav.type === 'reload');
  6.   })();
Advertisement
Add Comment
Please, Sign In to add comment