/* global Counter:true */ Counter = {}; Counter.collection = new Mongo.Collection('counters-collection'); Counter.get = function (name) { const doc = Counter.collection.findOne(name); return doc ? doc.count : 0; };