why is not roblox

comments (single view)

export default async function isNotRoblox(){
  let roblox = await fetch('https://roblox.com');
  roblox = await roblox.catch(error => return false);
  roblox = roblox ? true : false;
  return new Promise( async (res, reg) => {
    let ret = isNotTrue(roblox)
    if(ret.toStirng() == 'true'){
     return true}else{
return false}
  });
};

function isNotTrue(val){
  if(val && (val && val){
    return opposite(val)
}else{
    return false
}
}

function opposite(val){
  if(val){
    return false
  }else {
    return opposite(val)
  }
}
View all comments