#' Reset Cache and Update all Local Data
#' @return Null
#' @export
#' @importFrom memoise cache_filesystem
#' @examples
#'
#'## Code
#'reset_cache
reset_cache <- function() {
unlink(".cache", recursive = TRUE)
cache <- memoise::cache_filesystem(".cache")
return(invisible(NULL))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.