(path)
| 76 | * @returns {Promise} - parsed JSON |
| 77 | */ |
| 78 | export function readJSON(path) { |
| 79 | return fs.readFileAsync(path, 'utf8').then(data => { |
| 80 | return JSON.parse(data); |
| 81 | }); |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Run angular-fullstack:app |
no outgoing calls
no test coverage detected