(filename: PathLike)
| 11 | #writer: Writer |
| 12 | |
| 13 | constructor(filename: PathLike) { |
| 14 | this.#filename = filename |
| 15 | this.#writer = new Writer(filename) |
| 16 | } |
| 17 | |
| 18 | async read(): Promise<string | null> { |
| 19 | let data |
nothing calls this directly
no outgoing calls
no test coverage detected