Skip to content

Instantly share code, notes, and snippets.

@st98
Created June 2, 2015 07:11
Show Gist options
  • Save st98/d8cf380e992a6895b2d9 to your computer and use it in GitHub Desktop.
Save st98/d8cf380e992a6895b2d9 to your computer and use it in GitHub Desktop.
ES CTF の Log でアレ。
Array.prototype.reduce.call(document.querySelectorAll('.narrow li code'), function (p, c) {
var s = c.childNodes[0].nodeValue;
if (!(s in p))
p[s] = 0;
p[s]++; return p;
}, {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment