(filepath: string, data: string)
| 57 | } |
| 58 | |
| 59 | export function writeFile(filepath: string, data: string) { |
| 60 | return fs.writeFile(filepath, data, { |
| 61 | encoding: 'utf8', |
| 62 | }) |
| 63 | } |
| 64 | |
| 65 | export function createGetCase(casePath: string) { |
| 66 | return function getCase(casename: string) { |
no outgoing calls