(
path: string,
options?: BufferEncoding | { encoding?: BufferEncoding | null } | null,
)
| 345 | // -- Default implementations --------------------------------------- |
| 346 | |
| 347 | readFile( |
| 348 | path: string, |
| 349 | options?: BufferEncoding | { encoding?: BufferEncoding | null } | null, |
| 350 | ): Promise<Buffer | string> { |
| 351 | return Promise.resolve(this.readFileSync(path, options)); |
| 352 | } |
| 353 | |
| 354 | readFileSync( |
| 355 | path: string, |
nothing calls this directly
no test coverage detected