Ben Lin
2024-12-26 056f7fd796fcbb4f0383db72795f99007b8749ef
1
2
3
4
5
6
7
8
import { isBrowser } from './isBrowser';
 
export function isOnline(): boolean {
  if (isBrowser && typeof navigator.onLine !== 'undefined') {
    return navigator.onLine;
  }
  return true;
}