Last active
April 2, 2016 19:29
-
-
Save muddylemon/afa8c9fafa98bd4216333cbf7f33bda4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var names = []; | |
Array.prototype.forEach.call(document.querySelectorAll('span.robin--username'), function(el) { | |
var n = el.innerText; | |
if (n && n !== "[robin]") { | |
names[n] = n; | |
} | |
}); | |
console.log(Object.keys(names).join(',').match(/.{1,120}/g)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment