(p, contents, space = 2)
| 6 | export const readJSON = async (p) => JSON.parse(await readFile(p)); |
| 7 | export const writeFile = util.promisify(fs.writeFile); |
| 8 | export const writeJSON = async (p, contents, space = 2) => |
| 9 | writeFile(p, JSON.stringify(contents, undefined, space) + '\n'); |
no outgoing calls
no test coverage detected