UNPKG
js-tutorial
Version:
latest (1.0.1)
1.0.1
js-tutorial
/
src
/
shared
/
api.js
12 lines
(9 loc)
•
167 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
class
Api
{ constructor(
method
)
{ this.method =
method
; } makeCall() {
return
`I am making a ${this.method} method call.`
; } } module.exports = Api;