R/get_date_condensed.R

Defines functions get_date_condensed

Documented in get_date_condensed

#' get_date_condensed
#' 
#' Get the date as a codensed string in the format yyyymmdd, 
#' without any white space. 
#' 
#' @return A string of today's date in the format yyyymmdd
#' @export

get_date_condensed <- function() {
  format(Sys.Date(), "%Y%m%d")
}
amyh25/RFunctions documentation built on Aug. 26, 2023, 4:33 p.m.