I am trying to add async method on node.js v6.11 but i, getting Unexpected identifier error.
let fs = require('fs');
let Config = require('../somefolders/config.js');
module.exports = class SomeClassName {
constructor(id = null) {
}
//Some other methods
static async test1234(param) {
}
//Some other Static methods
}
This is the error We are getting: