UNPKG

resume-client-socket.io

Version:

Resume Client API for Socket.IO and Node.JS - Medical Speech to Summarized Text

25 lines (17 loc) 387 B
module.exports = Counter; function Counter(opts) { opts = opts || {}; this._count = opts.count || 0; } Counter.prototype.val = function() { return this._count; }; Counter.prototype.inc = function(n) { this._count += (n || 1); }; Counter.prototype.dec = function(n) { this._count -= (n || 1); }; Counter.prototype.reset = function(count) { this._count = count || 0; };