method
parse_content_type
v5.2.3 -
Show latest stable
- Class:
ActionDispatch::Response
parse_content_type(content_type)private
No documentation available.
# File actionpack/lib/action_dispatch/http/response.rb, line 412
def parse_content_type(content_type)
if content_type && match = CONTENT_TYPE_PARSER.match(content_type)
ContentTypeHeader.new(match[:type], match[:charset])
else
NullContentTypeHeader
end
end