module Elastic::WorkplaceSearch::Utils

Public Instance Methods

stringify_keys(hash) click to toggle source
# File lib/elastic/workplace-search/utils.rb, line 6
def stringify_keys(hash)
  output = {}
  hash.each do |key, value|
    output[key.to_s] = value
  end
  output
end