UNPKG

composr-core

Version:
10 lines (7 loc) 146 B
function UserModel (options) { this.name = options.name } UserModel.prototype.getName = function () { return this.name } exports(UserModel)