(value: string, maxLength: number)
| 858 | } |
| 859 | |
| 860 | function boundedDisplay(value: string, maxLength: number): string { |
| 861 | return value.replace(/\s+/g, ' ').trim().slice(0, maxLength); |
| 862 | } |
| 863 | |
| 864 | function stableIdentifier(value: string): string | undefined { |
| 865 | const normalized = value.trim(); |
no test coverage detected