Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save maciejniedzielski/949b619c4a38685dbf7c9628e9e2adb0 to your computer and use it in GitHub Desktop.
Save maciejniedzielski/949b619c4a38685dbf7c9628e9e2adb0 to your computer and use it in GitHub Desktop.
console.image()
console.image = src => {
const image = new Image();
image.onload = () => console.log('%c+', `font-size: 0; padding: ${image.height}px ${image.width}px 0 0; background: url(${src});`);
image.src = src;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment