UNPKG
migme-ferry
Version:
latest (3.2.7)
3.2.7
3.2.5
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.3
2.1.2
2.1.1
2.1.0
2.0.1
1.2.0
Ferry transports packets to and from fusion/fission
github.com/migme/ferry
migme/ferry
migme-ferry
/
lib
/
utils
/
check-online-status.js
12 lines
(9 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
default
=
function
(
) {
var
isOnline =
typeof
navigator ===
'undefined'
?
true
: navigator.
onLine
;
return
isOnline; };
module
.
exports
=
exports
[
'default'
];