var onLinedsasd=(async()=>{
if(navigator.onLine){
var date=+new Date();
var res=await fetch('/favicon.ico?_='+date);
var ret=await res.headers.get('Content-Type').split('/')[0]=='image';
}else{
ret=navigator.onLine;
}
return ret;
});
if(onLinedsasd()){
//...
}else{
//...
}