I have created one common util file to write some common foundations like below.
export default { 
    a: () => {
        console.log("Hello");
    }
    b: () => {
        this.a();
    }
}
I want to call the function into the function b. I have tried lots of things but none of them are working. Please help me in this concern.
 
     
     
    