# File lib/cookiejar/cookie_validation.rb, line 338
    def self.decode_value value
      if /\A"(.*)"\Z/.match value
        value_to_string value
      else
        CGI.unescape value
      end
    end