Class: IdValueFormatter

Inherits:
JSONAPI::ValueFormatter show all
Defined in:
lib/jsonapi/formatter.rb

Class Method Summary collapse

Methods inherited from JSONAPI::ValueFormatter

unformat, value_formatter_for

Methods inherited from JSONAPI::Formatter

#formatter_for, unformat

Class Method Details

.format(raw_value, context) ⇒ Object



107
108
109
110
# File 'lib/jsonapi/formatter.rb', line 107

def format(raw_value, context)
  return if raw_value.nil?
  raw_value.to_s
end