class Geocoder::Result::Okf

def postal_code

def postal_code
  if postal = address_components_of_type(:postal_code).first
    postal['long_name']
  end
end