UNPKG

node-express-ex-boilerplate

Version:
13 lines (9 loc) 220 B
'use strict'; function Counter() { this.counter = 0; this.dt = new Date(); } Counter.prototype.count = function() { return this.counter++ + ' (I was born at ' + this.dt + ')'; }; module.exports = Counter;