Skip to content

Instantly share code, notes, and snippets.

@temberature
Created November 23, 2018 06:35
Show Gist options
  • Save temberature/c081e8c0e91a2b7a3aaadb8ff088e7a3 to your computer and use it in GitHub Desktop.
Save temberature/c081e8c0e91a2b7a3aaadb8ff088e7a3 to your computer and use it in GitHub Desktop.
var nodes = document.querySelectorAll('[is]')
Array.from(nodes).reduce((times, node) => {
var type = node.getAttribute('is')
if (!times[type]) {
times[type] = 1
} else {
times[type] ++
}
return times
}, {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment