Checks if x is a date (non-missing unnamed Date scalar).
Usage
check_date(x, coerce = FALSE, x_name = substitute(x), error = TRUE)
check_day(x, coerce = FALSE, x_name = substitute(x), error = TRUE)
Examples
check_date(Sys.Date(), error = FALSE)
#> Warning: `check_date()` was deprecated in checkr 0.5.1.
#> ℹ Please use `chk::chk_date()` instead.
check_date(Sys.time(), error = FALSE)
#> Warning: Sys.time() must be class Date
#> Warning: Sys.time() must inherit from classes 'Date' in that order
check_date(Sys.time(), coerce = TRUE, error = FALSE)