3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# File 'lib/rails_admin/support/hash_helper.rb', line 3
def self.symbolize(obj)
case obj
when Array
obj.each_with_object([]) do |val, res|
res << case val
when Hash, Array then symbolize(val)
when String then val.to_sym
else val
end
end
when Hash
obj.each_with_object({}) do |(key, val), res|
nkey = key.is_a?(String) ? key.to_sym : key
nval = case val
when Hash, Array then symbolize(val)
when String then val.to_sym
else val
end
res[nkey] = nval
end
else
obj
end
end
|