Nothing
local_devtools_package <- function(path, ..., env = parent.frame()) {
pkgload::load_all(path, ..., quiet = TRUE)
defer(pkgload::unload(pkgload::pkg_name(path)), scope = env)
}
defer <- function(expr, scope = parent.frame()) {
expr <- enquo(expr)
call <- expr(on.exit(rlang::eval_tidy(!!expr), add = TRUE))
eval_bare(call, scope)
invisible()
}
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.