(opts: { min?: number; max?: number })
| 92 | } |
| 93 | |
| 94 | function rangeSuffix(opts: { min?: number; max?: number }): string { |
| 95 | if (opts.min !== undefined && opts.max !== undefined) return ` (${opts.min}-${opts.max})`; |
| 96 | if (opts.min !== undefined) return ` (>= ${opts.min})`; |
| 97 | if (opts.max !== undefined) return ` (<= ${opts.max})`; |
| 98 | return ""; |
| 99 | } |
no outgoing calls
no test coverage detected