(path: string, contents: string)
| 29 | export const readFile = (path: string): string => readFileSync(path).toString() |
| 30 | |
| 31 | export const writeFile = (path: string, contents: string): string => { |
| 32 | writeFileSync(path, contents) |
| 33 | return contents |
| 34 | } |
| 35 | |
| 36 | export const rewriteFile = ( |
| 37 | path: string, |
no outgoing calls
no test coverage detected
searching dependent graphs…