9 lines
151 B
JavaScript
9 lines
151 B
JavaScript
class utils {
|
|
test() {
|
|
console.log(this);
|
|
console.log("hhaahhah");
|
|
}
|
|
}
|
|
|
|
module.exports = new utils()
|
|
// exports.a = new utils()
|