(entry: { param: string })
| 226 | function caseNormalizeConfigProps(config: Configuration): Configuration { |
| 227 | const caseNormalizeDirective: (entry: { param: string }) => void = |
| 228 | (entry: { param: string }) => entry.param = CASE_NORMALIZED_PROPS.get(entry.param.toLowerCase()) || entry.param; |
| 229 | |
| 230 | config.filter(isDirective).forEach(entry => { |
| 231 | caseNormalizeDirective(entry); |
no test coverage detected