(p: string, isLstat: boolean)
| 354 | } |
| 355 | |
| 356 | public statSync(p: string, isLstat: boolean): Stats { |
| 357 | // Get the inode to the item, convert it into a Stats object. |
| 358 | return this.findINode(this.store.beginTransaction('readonly'), p).toStats(); |
| 359 | } |
| 360 | |
| 361 | public createFileSync(p: string, flag: FileFlag, mode: number): File { |
| 362 | const tx = this.store.beginTransaction('readwrite'), |
nothing calls this directly
no test coverage detected