(filePath: string, content: string)
| 62 | } |
| 63 | |
| 64 | export async function writeText(filePath: string, content: string): Promise<void> { |
| 65 | await writeFile(filePath, content, 'utf-8'); |
| 66 | } |
| 67 | |
| 68 | export async function exists(filePath: string): Promise<boolean> { |
| 69 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…