(fullFilePath)
| 128 | } |
| 129 | |
| 130 | function readFile(fullFilePath) { |
| 131 | return fs.readFileSync(fullFilePath, {encoding: 'utf-8'}); |
| 132 | } |
| 133 | |
| 134 | function writeToFile(outputPath, text) { |
| 135 | fs.writeFileSync(outputPath, text, {encoding: 'utf-8'}); |
no outgoing calls
no test coverage detected
searching dependent graphs…