You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
669 B
JavaScript
35 lines
669 B
JavaScript
5 years ago
|
/*jshint esversion: 6 */
|
||
|
const Pins = require("../../lib/pins");
|
||
|
|
||
|
var stats = {
|
||
|
users: 0,
|
||
|
lines: 0,
|
||
|
pinned: 0,
|
||
|
events: 0,
|
||
|
};
|
||
|
|
||
|
Pins.list(function (err, pinned) {
|
||
|
for (var id in pinned) {
|
||
|
console.log(id);
|
||
|
stats.pinned++;
|
||
|
}
|
||
|
console.log(stats);
|
||
|
}, {
|
||
|
pinPath: require("../../lib/load-config").pinPath
|
||
|
});
|
||
|
|
||
|
/*
|
||
|
function (ref, safeKey, pinned) {
|
||
|
stats.users++;
|
||
|
stats.lines += ref.index;
|
||
|
|
||
|
Object.keys(ref.pins).forEach(function (id) {
|
||
|
if (!pinned[id]) {
|
||
|
pinned[id] = true;
|
||
|
stats.pinned++;
|
||
|
}
|
||
|
});
|
||
|
//console.log("pin", stats.events++);
|
||
|
//console.log(ref, safeKey);
|
||
|
}*/
|