Method: Hash#transform_keys

Defined in:
lib/pgls/compat.rb

#transform_keysObject

transform_keys was added in ruby-2.5



5
6
7
8
9
# File 'lib/pgls/compat.rb', line 5

def transform_keys
  map do |k, v|
    [yield(k), v]
  end.to_h
end