UNPKG

@segment/analytics-next

Version:

Analytics Next (aka Analytics 2.0) is the latest version of Segment’s JavaScript SDK - enabling you to send your data to any tool without having to learn, test, or use a new API every time.

14 lines (10 loc) 222 B
import { isBrowser } from '../environment' export function isOnline(): boolean { if (isBrowser()) { return window.navigator.onLine } return true } export function isOffline(): boolean { return !isOnline() }