(path)
| 5 | const data = join(__dirname, '..', '..', 'data') |
| 6 | |
| 7 | function getJSON (path) { |
| 8 | return JSON.parse(fs.readFileSync(path, 'utf-8')) |
| 9 | } |
| 10 | |
| 11 | function writeJSON (path, data) { |
| 12 | fs.writeFileSync(path, JSON.stringify(data, null, 2), 'utf-8') |
no outgoing calls
no test coverage detected
searching dependent graphs…