(value: unknown)
| 69 | } |
| 70 | |
| 71 | export function trimText(value: unknown): string { |
| 72 | return typeof value === 'string' ? value.trim() : ''; |
| 73 | } |
| 74 | |
| 75 | export function normalizeType(type: string): string { |
| 76 | let normalized = type |
no outgoing calls
no test coverage detected