#' Systematic Saving of R Objects
#'
#' @export
move_to <- function(.object, .path, here = TRUE, session = TRUE) {
if (here) .path <- c(here::here(), .path) |> as.list()
if (session) attr(.object, "session") <- devtools::session_info()
.object |>
readr::write_rds(do.call(fs::path, .path))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.