Method: Fetch::Response#json

Defined in:
lib/fetch/response.rb

#jsonObject



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

def json(...)
  return nil unless body

  JSON.parse(body, ...)
end