Class: Hash

Inherits:
Object show all
Defined in:
lib/volt/extra_core/hash.rb,
lib/volt/extra_core/blank.rb

Instance Method Summary collapse

Instance Method Details

#deep_curObject



2
3
4
5
6
7
8
9
10
# File 'lib/volt/extra_core/hash.rb', line 2

def deep_cur
  new_hash = {}

  each_pair do |key, value|
    new_hash[key.deep_cur] = value.deep_cur
  end

  return new_hash
end