-
-
Save st98/d8cf380e992a6895b2d9 to your computer and use it in GitHub Desktop.
ES CTF の Log でアレ。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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