(gatewayHome: string)
| 16 | } |
| 17 | |
| 18 | export function configFilePath(gatewayHome: string): string { |
| 19 | return path.join(gatewayHome, 'config.json'); |
| 20 | } |
| 21 | |
| 22 | function expandPath(raw: string, homeDir: string): string { |
| 23 | if (raw === '~') return homeDir; |
no outgoing calls
no test coverage detected