Module: LlPay::Utils

Defined in:
lib/ll_pay/utils.rb

Class Method Summary collapse

Class Method Details

.stringify_keys(hash) ⇒ Object



3
4
5
6
7
8
9
# File 'lib/ll_pay/utils.rb', line 3

def self.stringify_keys(hash)
  new_hash = {}
  hash.each do |key, value|
    new_hash[(key.to_sym rescue key) || key] = value
  end
  new_hash
end