(filePath)
| 11 | |
| 12 | // Silly wrapper function to read a file and return its content |
| 13 | function readFile(filePath) { |
| 14 | return fs.readFileSync(filePath, "utf8"); |
| 15 | } |
| 16 | |
| 17 | // Function to write content to a file |
| 18 | function writeFile(filePath, content) { |
no outgoing calls
no test coverage detected