(file: string)
| 249 | }; |
| 250 | |
| 251 | const readFile = (file: string) => { |
| 252 | return fsExtra.readFile( |
| 253 | path.join(process.cwd(), config.outputDir, file), |
| 254 | "utf-8" |
| 255 | ); |
| 256 | }; |
| 257 | |
| 258 | const existsFile = (file: string) => { |
| 259 | return fsExtra.existsSync( |
no outgoing calls
no test coverage detected