sunrise-cms/temp/legacyImportFromCsv/data.deathAgePeriods.ts

18 lines
319 B
TypeScript

export function getDeathAgePeriod(legacyDeathAgePeriod: string): string {
switch (legacyDeathAgePeriod.toLowerCase()) {
case 'yrs': {
return 'Years'
}
case 'mts': {
return 'Months'
}
case 'dys': {
return 'Days'
}
default: {
return legacyDeathAgePeriod
}
}
}