(p: string)
| 396 | } |
| 397 | |
| 398 | public readdirSync(p: string): string[] { |
| 399 | const tx = this.store.beginTransaction('readonly'); |
| 400 | return Object.keys(this.getDirListing(tx, p, this.findINode(tx, p))); |
| 401 | } |
| 402 | |
| 403 | public _syncSync(p: string, data: Buffer, stats: Stats): void { |
| 404 | // @todo Ensure mtime updates properly, and use that to determine if a data |
no test coverage detected