class Geocoder::Query

def sanitized_text

def sanitized_text
  if coordinates?
    text.split(/\s*,\s*/).join(',')
  else
    text
  end
end