Nothing
js <- r"(
[
{"a":1.234560},
{"a":2},
{"a":"apple"}
])"
test_that("numeric promotion to string instead of list works", {
res <- read_json_str(js)
expect_identical(res$a, list(1.234560, 2L, "apple"))
res <- read_json_str(js, promote_num_to_string = FALSE)
expect_identical(res$a, list(1.234560, 2L, "apple"))
res <- read_json_str(js, promote_num_to_string = TRUE)
expect_identical(res$a, c("1.234560", "2", "apple"))
})
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.