method
stringify_keys
v5.1.7 -
Show latest stable
- Class:
ActionDispatch::Request::Session
stringify_keys(other)private
No documentation available.
# File actionpack/lib/action_dispatch/request/session.rb, line 222
def stringify_keys(other)
other.each_with_object({}) { |(key, value), hash|
hash[key.to_s] = value
}
end