(options: ParsedOptions)
| 399 | } |
| 400 | |
| 401 | function hasNumericConfig(options: ParsedOptions): boolean { |
| 402 | return ( |
| 403 | options.minRaw !== undefined || |
| 404 | options.maxRaw !== undefined || |
| 405 | options.stepRaw !== undefined |
| 406 | ); |
| 407 | } |
| 408 | |
| 409 | function buildNumericConfig( |
| 410 | options: ParsedOptions, |
no outgoing calls
no test coverage detected