Nothing
test_that("option 'single_null' works", {
expect_identical(
read_json_str('{"a":null,"b":3}'),
list(a = NULL, b = 3L)
)
expect_identical(
read_json_str('{"a":null,"b":3}', single_null = "hello"),
list(a = "hello", b = 3L)
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.