(value: unknown)
| 314 | } |
| 315 | |
| 316 | function asRecord(value: unknown): UnknownRecord | undefined { |
| 317 | if (!value || typeof value !== 'object' || Array.isArray(value)) { |
| 318 | return undefined |
| 319 | } |
| 320 | return value as UnknownRecord |
| 321 | } |
| 322 | |
| 323 | function stringField( |
| 324 | record: UnknownRecord | undefined, |
no outgoing calls
no test coverage detected