(record: SnippetsLabRecord, key: string)
| 42 | } |
| 43 | |
| 44 | function readString(record: SnippetsLabRecord, key: string): string | null { |
| 45 | const value = record[key] |
| 46 | return typeof value === 'string' && value.trim() ? value : null |
| 47 | } |
| 48 | |
| 49 | function getRecordArray(record: SnippetsLabRecord, key: string) { |
| 50 | const value = record[key] |
no outgoing calls
no test coverage detected