class JsonApiClient::IdValueFormatter

Public Class Methods

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