(filesPath: string)
| 21 | repliesMap: Record<string, any[]>; |
| 22 | |
| 23 | constructor(filesPath: string) { |
| 24 | this.filesPath = filesPath; |
| 25 | this.channelsMap = {}; |
| 26 | this.repliesMap = {}; |
| 27 | } |
| 28 | |
| 29 | _readParseFile(filename: string) { |
| 30 | const data = fs.readFileSync(this.filesPath + '/' + filename, 'utf8'); |
nothing calls this directly
no outgoing calls
no test coverage detected