(absolutePath)
| 21736 | return file.content |
| 21737 | } |
| 21738 | async createReadStream(absolutePath) { |
| 21739 | const fd = await fsp.open(absolutePath) |
| 21740 | return fd.createReadStream({ |
| 21741 | encoding: "utf8" |
| 21742 | }) |
| 21743 | } |
| 21744 | async list(folder) { |
| 21745 | if (isUrl(folder)) { |
| 21746 | return [] // URLs don't support directory listing |
no outgoing calls
no test coverage detected