(record: Record<string, unknown>)
| 142 | } |
| 143 | |
| 144 | function readAppleOs(record: Record<string, unknown>): AppleOS | undefined { |
| 145 | const value = record.appleOs; |
| 146 | return isAppleOs(value) ? value : undefined; |
| 147 | } |
| 148 | |
| 149 | function readClientDeviceIdentity(value: unknown, nameField: string) { |
| 150 | const record = asRecord(value); |
no test coverage detected