module Parse::Util

Public Instance Methods

string_keyed_hash(hash) click to toggle source
# File lib/parse/util.rb, line 3
def string_keyed_hash hash
  new_hash = {}
  (hash || {}).each do |k, v|
    new_hash[k.to_s] = v
  end
  new_hash
end