11 lines
132 B
JavaScript
11 lines
132 B
JavaScript
class utils {
|
|
|
|
test () {
|
|
return "test"
|
|
}
|
|
|
|
hello() {
|
|
return "hello"
|
|
}
|
|
}
|
|
module.exports = new utils(); |