YangYuGang
2025-03-05 7ec3b1286f311a4018e9eaf2b4037f511df5bbab
1
2
3
4
5
6
7
8
import { isBrowser } from './isBrowser';
 
export function isDocumentVisible(): boolean {
  if (isBrowser) {
    return document.visibilityState !== 'hidden';
  }
  return true;
}