export function getCounty (county) { if (!county) return county if (county.toLowerCase() === 'georgia') return '-- All --' if (county === 'Non-GA Resident/Unknown State') return '-- Unknown --' return county.split('County').join('').split('county').join('').trim() }