📅  最后修改于: 2022-03-11 15:01:25.683000             🧑  作者: Mango
class MyClass{
constructor(config) {
this.config = config;
}
async method1(paramA) {
// do_stuff...
}
method2(paramB) {
this.method1();
}
}