Skip to content

Instantly share code, notes, and snippets.

@nabettu
Created May 7, 2018 14:20
Show Gist options
  • Save nabettu/33f4aadc7310c9b7e3c60b7f3d6d406c to your computer and use it in GitHub Desktop.
Save nabettu/33f4aadc7310c9b7e3c60b7f3d6d406c to your computer and use it in GitHub Desktop.
画像あるかな関数
checkImageExist(imageSrc) {
return new Promise((resolve, reject) => {
var img = new Image();
img.onload = () => {
resolve(imageSrc);
};
img.onerror = () => {
reject(new Error("404"));
};
img.src = imageSrc;
});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment