Skip to content

Instantly share code, notes, and snippets.

@krutoo
Created November 25, 2020 15:38
Show Gist options
  • Save krutoo/a399e265f176be72f0590d55957c846d to your computer and use it in GitHub Desktop.
Save krutoo/a399e265f176be72f0590d55957c846d to your computer and use it in GitHub Desktop.
Simplest async image loading
export const loadImage = path => new Promise((resolve, reject) => {
const image = new Image();
image.onload = () => resolve(image);
image.onerror = () => reject(image);
image.src = path;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment