2021-12-30 21:56:56 -05:00

6 lines
175 B
JavaScript

export function getCounty (county) {
if (county === 'Georgia') return '-- All --'
if (county === 'Non-GA Resident/Unknown State') return '-- Unknown --'
return county
}