Method: JSON::GenericObject.from_hash

Defined in:
lib/oj/json.rb

.from_hash(object) ⇒ Object

[View source]

134
135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/oj/json.rb', line 134

def from_hash(object)
  case
  when object.respond_to?(:to_hash)
    result = new
    object.to_hash.each do |key, value|
      result[key] = from_hash(value)
    end
    result
  when object.respond_to?(:to_ary)
    object.to_ary.map { |a| from_hash(a) }
  else
    object
  end
end