method
load
v7.0.0 -
Show latest stable
- Class:
ActionDispatch::Cookies::MarshalWithJsonFallback
load(value)public
No documentation available.
# File actionpack/lib/action_dispatch/middleware/cookies.rb, line 534
def self.load(value)
Marshal.load(value)
rescue TypeError => e
ActiveSupport::JSON.decode(value) rescue raise e
end