Nothing
is_hexcolor <- function(x) {
pattern <- stringr::regex("^#[a-f0-9]{6}$", ignore_case = TRUE)
out <- stringr::str_detect(x, pattern)
out[is.na(out)] <- FALSE
out
}
expect_hexcolor <- function(object) {
# capture object and label
act <- quasi_label(rlang::enquo(object))
valid <- is_hexcolor(act$val)
expect(
all(valid),
glue::glue("Not all elements of {act$lab} are hex colors.")
)
invisible(act$val)
}
expect_equal_scale <- function(x, y, ...) {
x <- as.list(x)
y <- as.list(y)
x$call <- y$call <- NULL
expect_equal(x, y, ...)
}
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.