(value: unknown)
| 668 | } |
| 669 | |
| 670 | function getComputerStatusOutcome(value: unknown): string | null { |
| 671 | return isRecordLike(value) ? getString(value.outcome) : null |
| 672 | } |
| 673 | |
| 674 | export function normalizeVantaMonitoredComputer(resource: JsonRecord): VantaMonitoredComputer { |
| 675 | const operatingSystem = isRecordLike(resource.operatingSystem) |
no test coverage detected