Nothing
test_that("qr_mode() works as expected", {
expect_identical(qr_mode("0"), "Numeric")
expect_identical(qr_mode("100"), "Numeric")
expect_identical(qr_mode("0.1"), "Alphanumeric")
expect_identical(qr_mode("A"), "Alphanumeric")
expect_identical(qr_mode("a"), "Byte")
x <- "fa\xE7ile"
Encoding(x) <- "latin1"
expect_identical(qr_mode(x), "Byte")
expect_identical(qr_mode("\u00E6"), "Byte")
})
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.