(path, data)
| 9 | } |
| 10 | |
| 11 | function writeJSON (path, data) { |
| 12 | fs.writeFileSync(path, JSON.stringify(data, null, 2), 'utf-8') |
| 13 | } |
| 14 | |
| 15 | // Reads and updates the JSON after processing in callback |
| 16 | function alterJSON (path, callback) { |
no outgoing calls
no test coverage detected
searching dependent graphs…