(resource: JsonRecord)
| 393 | } |
| 394 | |
| 395 | export function normalizeVantaFrameworkDetail(resource: JsonRecord): VantaFrameworkDetail { |
| 396 | return { |
| 397 | ...normalizeVantaFramework(resource), |
| 398 | requirementCategories: getRecordArray(resource.requirementCategories).map( |
| 399 | normalizeVantaFrameworkRequirementCategory |
| 400 | ), |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | export function normalizeVantaControl(resource: JsonRecord): VantaControl { |
| 405 | return { |
no test coverage detected