6 lines
175 B
JavaScript
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
|
|
}
|