Nothing
# nocov start
# only used in testing
with_verbose <- function(code) {
with_options(c(fuj.verbose = TRUE), code)
}
# nocov end
with_options <- function(op, code) {
op <- do.call(options, as.list(op))
on.exit(options(op))
force(code)
}
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.