(fileName: string)
| 2 | import { dirname, join } from 'node:path'; |
| 3 | |
| 4 | export function readFile(fileName: string): Promise<string> { |
| 5 | return fs.readFile(fileName, 'utf-8'); |
| 6 | } |
| 7 | |
| 8 | export function writeFile(fileName: string, content: string, options?: any): Promise<void> { |
| 9 | return fs.writeFile(fileName, content, options); |
no test coverage detected