Ben Lin
2024-08-05 16257dd099d9811fb5caf78047ffc2425c401e0e
1
2
3
4
5
6
7
8
import { isBrowser } from './isBrowser';
 
export function isDocumentVisible(): boolean {
  if (isBrowser) {
    return document.visibilityState !== 'hidden';
  }
  return true;
}