class Geocoder::Result::Google

def sub_state_code

def sub_state_code
  if state = address_components_of_type(:administrative_area_level_2).first
    state['short_name']
  end
end