Method: Fetch::Response#json

Defined in:
lib/fetch/response.rb

#json(**json_parse_options) ⇒ Object



24
25
26
27
28
# File 'lib/fetch/response.rb', line 24

def json(**json_parse_options)
  return nil unless body

  JSON.parse(body, **Fetch.config.json_parse_options, **json_parse_options)
end