Created
August 16, 2019 07:56
-
-
Save nyawach/b62cccf8edffaf5bef3312cd881bbc8e to your computer and use it in GitHub Desktop.
画像の読み込みやるやつ最小版
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const loadImage = (src) => new Promise((resolve, reject) => { | |
const img = new Image() | |
img.onload = () => resolve(img) | |
img.onerror = reject | |
img.src = src | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment