Nothing
#' @title Check registry
#'
#' @description Check that the registry is valid.
#' @param registry A character vector of registry names.
#' @returns A single registry name.
#'
#' @keywords internal
check_registry <- function(registry){
if(!is.null(registry)){
registry <- registry[1]
if(!grepl("/$",registry)){
registry <- paste0(registry,"/")
}
return(registry)
} else {
return(NULL)
}
}
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.