Nothing
test_that("object_type returns expected types", {
expect_identical(
object_type(factor(letters)),
"factor"
)
expect_identical(
object_type(),
"missing"
)
expect_identical(
object_type(quote(mean(1:10))),
"call"
)
expect_identical(
object_type(rlang::quo(whatever)),
"quosure"
)
})
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.