I have an module exported as the following, I want to call function in another is that possible in that case
module.exports = {
  first:() => {
    // this is my first function
  },
  second:() => {
    // I want to call my first function here
    // I have tried this 
    this.first()
  }
}