Method: Golden::Theme::CommonHelper#value_or_na

Defined in:
app/helpers/golden/theme/common_helper.rb

#value_or_na(value) ⇒ Object



12
13
14
15
# File 'app/helpers/golden/theme/common_helper.rb', line 12

def value_or_na value
  return t('helpers.not_available') if value.blank?
  value
end