How to check if a URL is an image in Node.js

1 Answer

0 votes
function isImage(url) {
  	return /\.(jpg|jpeg|png|bmp|webp|apng|avif|gif|svg)$/.test(url);
}

console.log(isImage('https://collectivesolver.com/images/exipure_renew_you.png'));

console.log(isImage('http://answersmind.com/search.php?q=art%20of%20paper%20folding'));






  
/*
run:
  
true
false
  
*/

 



answered Apr 28, 2022 by avibootz

Related questions

1 answer 151 views
1 answer 150 views
1 answer 114 views
2 answers 1,123 views
3 answers 258 views
...