Usuario:Fbstj/stats/thanks

De La Coppermind
< Usuario:Fbstj
Revisión del 21:34 23 nov 2018 de Fbstj (discusión | contribs.) (Fbstj moved page User:Fbstj/thank-stats to User:Fbstj/stats/thanks without leaving a redirect)
(difs.) ← Revisión anterior | Revisión actual (difs.) | Revisión siguiente → (difs.)
Ir a la navegación Ir a la búsqueda

as of 2018-07-11 there are 1924 thanks in the system, going back to 2014-09-17. 243 were given by others. 165 were given by others to others:

Map.prototype.increment = function(key) { if (!this.has(key)) this.set(key, 0); this.set(key, this.get(key) + 1); }
let from = new Map, to = new Map
$$('.mw-logline-thanks').forEach(el => { let [f,t] = el.querySelectorAll('.mw-userlink'); from.increment(f.innerText); to.increment(t.innerText); })