Nothing
pkg_error <- function(
...,
.data = NULL,
.class = NULL,
.envir = parent.frame(),
call. = TRUE
) {
.hide_from_trace <- TRUE
cnd <- new_error(
call. = call.,
cli::format_error(
.envir = .envir,
c(
...
)
)
)
if (length(.data)) {
cnd[names(.data)] <- .data
}
if (length(.class)) {
class(cnd) <- c(.class, class(cnd))
}
cnd
}
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.