(name: string)
| 20 | } |
| 21 | |
| 22 | public readFile(name: string) { |
| 23 | const targetPath = path.normalize(path.join(StorageSubsystem.DATA_PATH, name)); |
| 24 | return fs.readFileSync(targetPath, { encoding: "utf-8" }); |
| 25 | } |
| 26 | |
| 27 | public readDir(dirName: string) { |
| 28 | const targetPath = path.normalize(path.join(StorageSubsystem.DATA_PATH, dirName)); |
no outgoing calls
no test coverage detected