(path: string)
| 248 | }, |
| 249 | |
| 250 | async readFile(path: string): Promise<string> { |
| 251 | return nodeReadFile(path, 'utf-8'); |
| 252 | }, |
| 253 | |
| 254 | async writeFile(path: string, data: string, options?: Record<string, any>): Promise<void> { |
| 255 | await nodeWriteFile(path, data, options); |
no outgoing calls
no test coverage detected