(data)
| 87 | } |
| 88 | |
| 89 | async function storeConfig(data) |
| 90 | { |
| 91 | try { |
| 92 | files.writeString(configPath, JSON.stringify(data)) |
| 93 | } catch (e) { |
| 94 | console.log("Creating Config failed!") |
| 95 | console.log(e) |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | async function loadConfig() { |
| 100 | let data |
no outgoing calls
no test coverage detected