UNPKG

js-tutorial

Version:

12 lines (9 loc) 167 B
class Api { constructor(method) { this.method = method; } makeCall() { return `I am making a ${this.method} method call.`; } } module.exports = Api;