(name: string, data: string)
| 15 | } |
| 16 | |
| 17 | public writeFile(name: string, data: string) { |
| 18 | const targetPath = path.normalize(path.join(StorageSubsystem.DATA_PATH, name)); |
| 19 | fs.writeFileSync(targetPath, data, { encoding: "utf-8" }); |
| 20 | } |
| 21 | |
| 22 | public readFile(name: string) { |
| 23 | const targetPath = path.normalize(path.join(StorageSubsystem.DATA_PATH, name)); |
no outgoing calls
no test coverage detected