Sha256: 46c54f7e3de7c1130759f332e037722a96faf85674f54d18a6f3c68d1d448641

Contents?: true

Size: 167 Bytes

Versions: 6

Compression:

Stored size: 167 Bytes

Contents

class Hash
  def deep_cur
    new_hash = {}
    
    each_pair do |key, value|
      new_hash[key.deep_cur] = value.deep_cur
    end
    
    return new_hash
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
volt-0.6.5 lib/volt/extra_core/hash.rb
volt-0.6.4 lib/volt/extra_core/hash.rb
volt-0.6.3 lib/volt/extra_core/hash.rb
volt-0.6.2 lib/volt/extra_core/hash.rb
volt-0.6.1 lib/volt/extra_core/hash.rb
volt-0.6.0 lib/volt/extra_core/hash.rb