(dirPath: string)
| 24 | } |
| 25 | |
| 26 | export async function ensureDir(dirPath: string): Promise<void> { |
| 27 | await fs.mkdir(dirPath, { recursive: true }) |
| 28 | } |
| 29 | |
| 30 | export async function readText(filePath: string): Promise<string> { |
| 31 | return fs.readFile(filePath, "utf8") |
no outgoing calls
no test coverage detected