(path: string)
| 32 | } |
| 33 | |
| 34 | public static loadAndParseJsonFile(path: string) { |
| 35 | return JSON.parse(fs.readFileSync(path, { encoding: 'utf-8' })) |
| 36 | } |
| 37 | |
| 38 | public static settingsFileType(path: string): SettingsFileTypes | undefined { |
| 39 | const files: string[] = fs.readdirSync(path) |
no outgoing calls
no test coverage detected