Skip to content

Instantly share code, notes, and snippets.

@fredj
Created June 3, 2019 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fredj/259aaca87d175f03c102a52e6dc2c994 to your computer and use it in GitHub Desktop.
Save fredj/259aaca87d175f03c102a52e6dc2c994 to your computer and use it in GitHub Desktop.
const img = new Image();
img.src = 'https://unpkg.com/@mapbox/maki@4.0.0/icons/fuel-15.svg';
img.decode()
.then(() => {
console.log('loaded');
})
.catch(() => {
console.log('error');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment