(filePath, data)
| 109 | } |
| 110 | |
| 111 | export function writeJsonFile(filePath, data) { |
| 112 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); |
| 113 | } |
| 114 | |
| 115 | export function moveBinary(source, destination) { |
| 116 | try { |
no outgoing calls
no test coverage detected