UNPKG

node-pmc

Version:
13 lines (11 loc) 221 B
'use strict'; class Project { constructor(name, location) { this.name = name; this.location = location; } toJSON() { return { name: this.name, location: this.location }; } } module.exports = Project;