* Writes content to a file. * @param filePath The path to the file. * @param content The content to write.
(filePath: string, content: string)
| 15 | * @param content The content to write. |
| 16 | */ |
| 17 | function writeFile(filePath: string, content: string): void { |
| 18 | fs.writeFileSync(filePath, content, 'utf-8'); |
| 19 | } |
| 20 | |
| 21 | function main(): void { |
| 22 | const devtoolsThirdPartyPath = |
no outgoing calls
no test coverage detected