@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.
16 lines • 442 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isOffline = exports.isOnline = void 0;
var environment_1 = require("../environment");
function isOnline() {
if ((0, environment_1.isBrowser)()) {
return window.navigator.onLine;
}
return true;
}
exports.isOnline = isOnline;
function isOffline() {
return !isOnline();
}
exports.isOffline = isOffline;
//# sourceMappingURL=index.js.map