as_stringified_json | R Documentation |
Stringified JSON is a string which can be parsed as a JSON. While a standard
JSON interpretation of list(number = 9)
would be {"number":9}
,
a stringified JSON representation would be "{\"number\":9}"
.
This function will convert NULL
values to JSON "nulls", to match the
convention used by Lambda event inputs, and values are automatically
unboxed.
as_stringified_json(x, ...)
x |
R object to be converted to stringified JSON. |
... |
additional arguments (except |
character
as_stringified_json(list(number = 9))
"{\"number\":9}"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.