R/temp-dir.r

#' Create a temporary directory.
#'
#' @export
temp_dir <- function() {
  path <- tempfile("gg2v-")
  dir.create(path)
  path
}
hadley/gg2v documentation built on May 17, 2019, 10:15 a.m.