# File lib/types/hash.rb, line 42
  def self.symbol_keys(h)
    h && h.reduce({}) { |x, (k, v)| x[k.to_sym] = v; x }
  end