(absolutePath)
| 21732 | return file.exists |
| 21733 | } |
| 21734 | async read(absolutePath) { |
| 21735 | const file = await this._read(absolutePath) |
| 21736 | return file.content |
| 21737 | } |
| 21738 | async createReadStream(absolutePath) { |
| 21739 | const fd = await fsp.open(absolutePath) |
| 21740 | return fd.createReadStream({ |
no test coverage detected