# File lib/active_support/json/backends/okjson.rb, line 608
        def decode(json)
          if json.respond_to?(:read)
            json = json.read
          end
          data = ActiveSupport::OkJson.decode(json)
          if ActiveSupport.parse_json_times
            convert_dates_from(data)
          else
            data
          end
        end