79268544

Date: 2024-12-10 14:11:42
Score: 0.5
Natty:
Report link

Try this

const isValidUrl = urlString=> {
  try { 
      return Boolean(new URL(urlString)); 
  }
  catch(e){ 
      return false; 
  }

}

Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Renan Silva