Nothing
#' @returns The saved SQUID.
#' @rdname saving_squids
#' @export
get_squid <- function(namespace = NULL) {
if (is.null(namespace)) {
optionName <- "squids_saved_SQUID";
} else {
optionName <- paste0("squids_", namespace);
}
res <- getOption(optionName);
if (!is.null(res)) {
class(res) <- c("squids", class(res));
}
return(res);
}
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.