UNPKG

node-express-ex-boilerplate

Version:
12 lines (8 loc) 190 B
'use strict'; function Greeting() { this.dt = new Date(); } Greeting.prototype.hello = function() { return 'Hello! (I was born at ' + this.dt + ')'; }; module.exports = Greeting;