(path)
| 145 | * @returns {Promise<Object>} |
| 146 | */ |
| 147 | export async function readJSON(path) { |
| 148 | const file = await readFile(path); |
| 149 | return JSON.parse(file); |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * @param {string} dest |
no test coverage detected
searching dependent graphs…