Skip to content

Instantly share code, notes, and snippets.

@jbenner-radham
Created June 10, 2019 16:38
Show Gist options
  • Save jbenner-radham/3edd324af788f36483cb19a02211a59e to your computer and use it in GitHub Desktop.
Save jbenner-radham/3edd324af788f36483cb19a02211a59e to your computer and use it in GitHub Desktop.
Array.from(document.head.querySelectorAll('meta'))
.filter(tag => tag.name && tag.content)
.forEach(tag => console.log(`${tag.name}: ${tag.content}`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment