(filePath: string)
| 58 | } |
| 59 | |
| 60 | export async function readText(filePath: string): Promise<string> { |
| 61 | return readFile(filePath, 'utf-8'); |
| 62 | } |
| 63 | |
| 64 | export async function writeText(filePath: string, content: string): Promise<void> { |
| 65 | await writeFile(filePath, content, 'utf-8'); |
no outgoing calls
no test coverage detected
searching dependent graphs…