(filePath: string, data: any)
| 81 | } |
| 82 | |
| 83 | writeJsonFile(filePath: string, data: any): FileSystem { |
| 84 | return this.writeFile(filePath, JSON.stringify(data, null, 4)) |
| 85 | } |
| 86 | |
| 87 | appendToFile(filePath: string, content: string): FileSystem { |
| 88 | fs.appendFileSync(filePath, content) |
no test coverage detected