(name: string)
| 37 | } |
| 38 | |
| 39 | public fileExists(name: string) { |
| 40 | const targetPath = path.normalize(path.join(StorageSubsystem.DATA_PATH, name)); |
| 41 | return fs.existsSync(targetPath); |
| 42 | } |
| 43 | |
| 44 | // Stored in local file based on class definition and identifier |
| 45 | public store(category: string, uuid: string, object: any) { |
no outgoing calls
no test coverage detected