(record: Record<string, unknown>, key: string)
| 270 | } |
| 271 | |
| 272 | function readOptionalText(record: Record<string, unknown>, key: string): string | undefined { |
| 273 | const value = record[key]; |
| 274 | return typeof value === 'string' ? value : undefined; |
| 275 | } |
| 276 | |
| 277 | function readRequiredInteger(record: Record<string, unknown>, key: string): number { |
| 278 | const value = record[key]; |
no outgoing calls
no test coverage detected
searching dependent graphs…