dwww Home | Show directory contents | Find package

# Turn off the default cache until the calling function exits; when that
# happens, the previous default cache will be restored.
local_disable_cache <- function(env = parent.frame()) {
  old_opts <- options(sass.cache = FALSE)
  withr::defer(
    options(old_opts),
    envir = env
  )
}

Generated by dwww version 1.15 on Fri Jun 21 21:56:07 CEST 2024.