(path)
| 14 | |
| 15 | const provider: SessionFsProvider = { |
| 16 | async readFile(path) { |
| 17 | return (await memoryProvider.readFile(sp(path), "utf8")) as string; |
| 18 | }, |
| 19 | async writeFile(path, content) { |
| 20 | await memoryProvider.writeFile(sp(path), content); |
| 21 | }, |
no test coverage detected
searching dependent graphs…