Skip to content

Instantly share code, notes, and snippets.

@stpe
stpe / slack-export-emoji-statistics.js
Created March 10, 2016 09:54
Parse Slack export to show top list of most popular emojis
"use strict";
var fs = require("fs");
var path = require("path");
var dir = "./export";
let count = fs.readdirSync(dir)
// we only want channel sub-directories
.filter(file => fs.statSync(path.join(dir, file)).isDirectory())