(p: string, mode: number)
| 390 | } |
| 391 | |
| 392 | public mkdirSync(p: string, mode: number): void { |
| 393 | const tx = this.store.beginTransaction('readwrite'), |
| 394 | data = Buffer.from('{}'); |
| 395 | this.commitNewFile(tx, p, FileType.DIRECTORY, mode, data); |
| 396 | } |
| 397 | |
| 398 | public readdirSync(p: string): string[] { |
| 399 | const tx = this.store.beginTransaction('readonly'); |
nothing calls this directly
no test coverage detected