Created
September 25, 2018 17:02
-
-
Save balbuf/d660f55474a8516c0a490a3332ca37dc to your computer and use it in GitHub Desktop.
Slack tabulate emoji creators
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
// make sure all custom emojis are loaded, then run this in the console | |
console.table(Object.entries(jQuery('.p-customize_emoji_list__author').toArray().reduce((accumulator, el) => {var user = el.textContent.trim(); accumulator[user] = accumulator[user] || 0; accumulator[user]++; return accumulator;}, {})).sort((a, b) => b[1] - a[1])); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment