Skip to content

Instantly share code, notes, and snippets.

@mciastek
Created September 14, 2019 15:24
Show Gist options
  • Save mciastek/488645fa0af17e6dcd0e293004074167 to your computer and use it in GitHub Desktop.
Save mciastek/488645fa0af17e6dcd0e293004074167 to your computer and use it in GitHub Desktop.
const loadImage = (src) => {
const img = new Image();
return new Promise((resolve, reject) => {
img.onload = () => resolve(src);
img.onerror = reject;
img.src = src;
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment