* Delete all contents stored in the file system.
()
| 284 | * Delete all contents stored in the file system. |
| 285 | */ |
| 286 | public empty(): void { |
| 287 | this.store.clear(); |
| 288 | // INVARIANT: Root always exists. |
| 289 | this.makeRootDirectory(); |
| 290 | } |
| 291 | |
| 292 | public renameSync(oldPath: string, newPath: string): void { |
| 293 | const tx = this.store.beginTransaction('readwrite'), |
nothing calls this directly
no test coverage detected