(filePath, data)
| 120 | } |
| 121 | |
| 122 | export function writeJsonFile(filePath, data) { |
| 123 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); |
| 124 | } |
| 125 | |
| 126 | export function moveBinary(source, destination) { |
| 127 | try { |
no outgoing calls
no test coverage detected