R/TODAY.R

Defines functions TODAY

Documented in TODAY

#' Get Today's Date
#'
#' Returns today's date.
#'
#' @return Returns today's date as a date object.
#' @author Nick Bultman, \email{njbultman74@@gmail.com}, February 2021
#' @seealso \code{\link{Sys.Date}}
#' @keywords today date time
#' @export
#' @examples
#' TODAY()
#'
TODAY <- function() {
  
  return(Sys.Date())
  
}
njbultman/xlsxFunctions documentation built on Aug. 8, 2021, 3:14 p.m.