UNPKG

node-express-ex-boilerplate

Version:
16 lines (11 loc) 191 B
'use strict'; function User(name) { this.name = name; } User.prototype.toJSON = function() { return { id: this.id, name: this.name } }; module.exports = User;