Method: Hash#deep_transform_keys!

Defined in:
lib/fancybox2/core_ext/hash.rb

#deep_transform_keys!(&block) ⇒ Object

Destructively convert all keys by using the block operation. This includes the keys from the root hash and from all nested hashes and arrays.



119
120
121
# File 'lib/fancybox2/core_ext/hash.rb', line 119

def deep_transform_keys!(&block)
  _deep_transform_keys_in_object!(self, &block)
end