class JSONAPI::Consumer::IdValueFormatter

Public Class Methods

format(raw_value) click to toggle source
# File lib/jsonapi/consumer/formatter.rb, line 109
def format(raw_value)
  return if raw_value.nil?
  raw_value.to_s
end