(optionName: string)
| 53 | } |
| 54 | |
| 55 | function toCamelCase(optionName: string): string { |
| 56 | return optionName.replace(/-([a-z])/g, (_, letter: string) => letter.toUpperCase()); |
| 57 | } |
| 58 | |
| 59 | function collectDynamicTaskParameters(argv: object, knownArgumentKeys: Set<string>): ParameterValues { |
| 60 | const parameters: ParameterValues = {}; |
no outgoing calls
no test coverage detected