method
stringify_keys
stringify_keys(other)
private
Hide source
# File actionpack/lib/action_dispatch/request/session.rb, line 235 def stringify_keys(other) other.each_with_object({}) { |(key, value), hash| hash[key.to_s] = value } end