(value: string)
| 55 | } |
| 56 | |
| 57 | const isForkValue = (value: string): value is ForkValue => { |
| 58 | return value === 'yes' || value === 'no' || value === 'only'; |
| 59 | } |
| 60 | |
| 61 | // Build a map for case-insensitive language lookup |
| 62 | const languageKeyLowerCaseMap: Map<string, string> = new Map( |
no outgoing calls
no test coverage detected