(async function() {
const isExists = async function(url) {
const response = await fetch(url, {
method: 'HEAD'
})
return response.status == 200
}
console.log(await isExists('https://hsto.org/r/w60/files/448/7d0/72f/4487d072f40f4f8e84854aea5794c990.png'))
})()