code
register
log in
programs
messages
download
about
privacy
terms
french
production
home
/
documentation
/
Json
examples
json parse a nothing
input
Json.parse('{"a": 1}')
result
nothing
json parse with response body
input
response = { body: '{"a": 1}' } Json.parse(response.body)
result
nothing
class functions
parse
examples
json parse nothing
input
Json.parse('{"a": 1}')
result
nothing
json parse nothing
input
response = { body: '{"a": 1}' } Json.parse(response.body)
result
nothing