(filePath)
| 30 | } |
| 31 | |
| 32 | function readFileSync(filePath) { |
| 33 | return fs.readFileSync(filePath) |
| 34 | } |
| 35 | |
| 36 | function renameFileSync(oldFilePath, newFilePath) { |
| 37 | fs.renameSync(oldFilePath, newFilePath, err => { |
no outgoing calls
no test coverage detected