UNPKG

ahooks

Version:
9 lines (8 loc) 223 B
import isBrowser from '../../../utils/isBrowser'; const isOnline = () => { if (isBrowser && typeof navigator.onLine !== 'undefined') { return navigator.onLine; } return true; }; export default isOnline;