(config)
| 57 | } |
| 58 | |
| 59 | function saveConfigFile (config) { |
| 60 | const cachePath = getCacheDirectory (); |
| 61 | const configFilePath = path.join (cachePath, 'config.json'); |
| 62 | fs.writeFileSync (configFilePath, JSON.stringify (config, null, 2)); |
| 63 | } |
| 64 | |
| 65 | function getExchangeSettings (exchangeId: string) { |
| 66 | let settingsPath = path.join (getCacheDirectory (), 'config.json'); |
no test coverage detected
searching dependent graphs…